File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/MongoDB.Driver.Legacy.Tests/Operations Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,12 +73,12 @@ public void CreateOperation_should_return_expected_result()
7373
7474 [ Test ]
7575 [ RequiresServer ( VersionLessThan = "3.0.0" ) ]
76- public async Task ExecuteAsync_should_return_expected_result ( )
76+ public void Execute_should_return_expected_result ( )
7777 {
7878 var subject = new CurrentOpUsingFindOperation ( _adminDatabaseNamespace , _messageEncoderSettings ) ;
7979 using ( var binding = new ReadPreferenceBinding ( CoreTestConfiguration . Cluster , ReadPreference . PrimaryPreferred ) )
8080 {
81- var result = await subject . ExecuteAsync ( binding , CancellationToken . None ) ;
81+ var result = subject . Execute ( binding , CancellationToken . None ) ;
8282
8383 result . Contains ( "inprog" ) ;
8484 }
You can’t perform that action at this time.
0 commit comments