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()
73
73
74
74
[ Test ]
75
75
[ RequiresServer ( VersionLessThan = "3.0.0" ) ]
76
- public async Task ExecuteAsync_should_return_expected_result ( )
76
+ public void Execute_should_return_expected_result ( )
77
77
{
78
78
var subject = new CurrentOpUsingFindOperation ( _adminDatabaseNamespace , _messageEncoderSettings ) ;
79
79
using ( var binding = new ReadPreferenceBinding ( CoreTestConfiguration . Cluster , ReadPreference . PrimaryPreferred ) )
80
80
{
81
- var result = await subject . ExecuteAsync ( binding , CancellationToken . None ) ;
81
+ var result = subject . Execute ( binding , CancellationToken . None ) ;
82
82
83
83
result . Contains ( "inprog" ) ;
84
84
}
You can’t perform that action at this time.
0 commit comments