File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
src/Microsoft.Data.SqlClient/tests/FunctionalTests Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -296,7 +296,8 @@ public void ConnectionTestValidCredentialCombination()
296
296
Assert . Equal ( sqlCredential , conn . Credential ) ;
297
297
}
298
298
299
- [ ParallelTheory ]
299
+ [ Theory ]
300
+ // [ParallelTheory] // Use as soon as Microsoft.DotNet.XUnitExtensions is updated to 10.0.0+
300
301
[ InlineData ( 60 ) ]
301
302
[ InlineData ( 30 ) ]
302
303
[ InlineData ( 15 ) ]
@@ -335,7 +336,8 @@ public void ConnectionTimeoutTest(int timeout)
335
336
$ "{ Environment . NewLine } { ex } ") ;
336
337
}
337
338
338
- [ ParallelTheory ]
339
+ [ Theory ]
340
+ // [ParallelTheory] // Use as soon as Microsoft.DotNet.XUnitExtensions is updated to 10.0.0+
339
341
[ InlineData ( 60 ) ]
340
342
[ InlineData ( 30 ) ]
341
343
[ InlineData ( 15 ) ]
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ public void RoutedConnection()
40
40
public async Task RoutedAsyncConnection ( )
41
41
=> await RecursivelyRoutedAsyncConnection ( 1 ) ;
42
42
43
- [ ParallelTheory ]
43
+ [ Theory ]
44
+ // [ParallelTheory] // Use as soon as Microsoft.DotNet.XUnitExtensions is updated to 10.0.0+
44
45
[ InlineData ( 2 ) ]
45
46
[ InlineData ( 9 ) ]
46
47
[ InlineData ( 11 ) ] // The driver rejects more than 10 redirects (11 layers of redirecting servers)
@@ -81,7 +82,8 @@ public void RecursivelyRoutedConnection(int layers)
81
82
}
82
83
}
83
84
84
- [ ParallelTheory ]
85
+ [ Theory ]
86
+ // [ParallelTheory] // Use as soon as Microsoft.DotNet.XUnitExtensions is updated to 10.0.0+
85
87
[ InlineData ( 2 ) ]
86
88
[ InlineData ( 9 ) ]
87
89
[ InlineData ( 11 ) ] // The driver rejects more than 10 redirects (11 layers of redirecting servers)
You can’t perform that action at this time.
0 commit comments