Skip to content

Commit

Permalink
Fix remaining warnings and errors
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmarbach committed Aug 19, 2024
1 parent 67ddd6e commit aac0640
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ public async Task OneTimeSetUp()
}

[OneTimeTearDown]
public Task OneTimeTearDown()
public async Task OneTimeTearDown()
{
return Container.DeleteContainerStreamAsync();
await Container.DeleteContainerStreamAsync();
CosmosDbClient.Dispose();
}

static string GetEnvironmentVariable(string variable, string fallbackEmulatorConnectionString)
Expand Down

0 comments on commit aac0640

Please sign in to comment.