File tree Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,12 @@ public async Task CanExecuteMultipleQueryWithSameParameterNameAsync()
159
159
string paramPrefix = ( ( DriverBase ) Sfi . ConnectionProvider . Driver ) . NamedPrefix ;
160
160
Assert . That (
161
161
wholeLog ,
162
- Does . Contain ( paramPrefix + "p0 = 1 [Type: Int32 (0:0:0)], " + paramPrefix + "p1 = 2 [Type: Int32 (0:0:0)]" ) ) ;
162
+ Does . Contain (
163
+ paramPrefix + "p0 = 1 [Type: Int32 (0:0:0)], " +
164
+ paramPrefix + "p1 = 2 [Type: Int32 (0:0:0)]" )
165
+ . Or . Contain (
166
+ paramPrefix + "p0 = 1 [Type: Int32 (4:0:0)], " +
167
+ paramPrefix + "p1 = 2 [Type: Int32 (4:0:0)]" ) ) ;
163
168
}
164
169
}
165
170
}
Original file line number Diff line number Diff line change @@ -381,7 +381,12 @@ public async Task CanExecuteMultipleQueriesOnSameExpressionAsync()
381
381
string paramPrefix = ( ( DriverBase ) Sfi . ConnectionProvider . Driver ) . NamedPrefix ;
382
382
Assert . That (
383
383
wholeLog ,
384
- Does . Contain ( paramPrefix + "p0 = 1 [Type: Int32 (0:0:0)], " + paramPrefix + "p1 = 2 [Type: Int32 (0:0:0)]" ) ) ;
384
+ Does . Contain (
385
+ paramPrefix + "p0 = 1 [Type: Int32 (0:0:0)], " +
386
+ paramPrefix + "p1 = 2 [Type: Int32 (0:0:0)]" )
387
+ . Or . Contain (
388
+ paramPrefix + "p0 = 1 [Type: Int32 (4:0:0)], " +
389
+ paramPrefix + "p1 = 2 [Type: Int32 (4:0:0)]" ) ) ;
385
390
}
386
391
}
387
392
}
Original file line number Diff line number Diff line change @@ -148,7 +148,12 @@ public void CanExecuteMultipleQueryWithSameParameterName()
148
148
string paramPrefix = ( ( DriverBase ) Sfi . ConnectionProvider . Driver ) . NamedPrefix ;
149
149
Assert . That (
150
150
wholeLog ,
151
- Does . Contain ( paramPrefix + "p0 = 1 [Type: Int32 (0:0:0)], " + paramPrefix + "p1 = 2 [Type: Int32 (0:0:0)]" ) ) ;
151
+ Does . Contain (
152
+ paramPrefix + "p0 = 1 [Type: Int32 (0:0:0)], " +
153
+ paramPrefix + "p1 = 2 [Type: Int32 (0:0:0)]" )
154
+ . Or . Contain (
155
+ paramPrefix + "p0 = 1 [Type: Int32 (4:0:0)], " +
156
+ paramPrefix + "p1 = 2 [Type: Int32 (4:0:0)]" ) ) ;
152
157
}
153
158
}
154
159
}
Original file line number Diff line number Diff line change @@ -370,7 +370,12 @@ public void CanExecuteMultipleQueriesOnSameExpression()
370
370
string paramPrefix = ( ( DriverBase ) Sfi . ConnectionProvider . Driver ) . NamedPrefix ;
371
371
Assert . That (
372
372
wholeLog ,
373
- Does . Contain ( paramPrefix + "p0 = 1 [Type: Int32 (0:0:0)], " + paramPrefix + "p1 = 2 [Type: Int32 (0:0:0)]" ) ) ;
373
+ Does . Contain (
374
+ paramPrefix + "p0 = 1 [Type: Int32 (0:0:0)], " +
375
+ paramPrefix + "p1 = 2 [Type: Int32 (0:0:0)]" )
376
+ . Or . Contain (
377
+ paramPrefix + "p0 = 1 [Type: Int32 (4:0:0)], " +
378
+ paramPrefix + "p1 = 2 [Type: Int32 (4:0:0)]" ) ) ;
374
379
}
375
380
}
376
381
}
You can’t perform that action at this time.
0 commit comments