Skip to content

Commit 05ce31b

Browse files
committed
Fix CA2007 NonWindows
1 parent 78e570f commit 05ce31b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/IntegrationTests/MongoDBCollectionFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private static async Task<IWaitForContainerOS> GetWaitForOSTypeAsync()
7171
? Wait.ForWindowsContainer()
7272
: Wait.ForUnixContainer();
7373
#else
74-
return await Task.Run(Wait.ForUnixContainer);
74+
return await Task.Run(Wait.ForUnixContainer).ConfigureAwait(false);
7575
#endif
7676
}
7777
}

0 commit comments

Comments
 (0)