Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
try use async void
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Chu committed Aug 22, 2017
1 parent c4aad1f commit 5b9daa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Obsidian.Persistence.Test/Repositories/RepositoryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ public virtual async Task Delete_Test()
Assert.Empty(result);
}

public void Dispose()
public async void Dispose()
{
CleanupDatabaseAsync().Wait();
await CleanupDatabaseAsync();
}
}
}

0 comments on commit 5b9daa6

Please sign in to comment.