File tree 1 file changed +3
-3
lines changed
test/tools/unified-spec-runner
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,21 +96,21 @@ export interface UnifiedSuite {
96
96
tests : Test [ ] ;
97
97
_yamlAnchors ?: Document ;
98
98
}
99
- export const TopologyId = Object . freeze ( {
99
+ export const TopologyName = Object . freeze ( {
100
100
single : 'single' ,
101
101
replicaset : 'replicaset' ,
102
102
sharded : 'sharded' ,
103
103
shardedReplicaset : 'sharded-replicaset' ,
104
104
loadBalanced : 'load-balanced'
105
105
} as const ) ;
106
106
107
- export type TopologyId = ( typeof TopologyId ) [ keyof typeof TopologyId ] ;
107
+ export type TopologyName = ( typeof TopologyName ) [ keyof typeof TopologyName ] ;
108
108
export interface RunOnRequirement {
109
109
serverless ?: 'forbid' | 'allow' | 'require' ;
110
110
auth ?: boolean ;
111
111
maxServerVersion ?: string ;
112
112
minServerVersion ?: string ;
113
- topologies ?: TopologyId [ ] ;
113
+ topologies ?: TopologyName [ ] ;
114
114
serverParameters ?: Document ;
115
115
csfle ?: boolean ;
116
116
}
You can’t perform that action at this time.
0 commit comments