1
0
mirror of https://github.com/bitwarden/server synced 2025-12-12 14:23:38 +00:00
* Initial v3 Migration

* Migrate tests and debug duplicate ids

* Debug duplicate ids

* Support seeding

* remove seeder

* Upgrade to latest XUnit.v3 version

* Remove Theory changes for now

* Remove Theory change from DeviceRepositoryTests

* Remove cancellation token additions
This commit is contained in:
Justin Baur
2025-08-25 02:43:24 -04:00
committed by GitHub
parent 3097e7f223
commit 5a712ebb6b
5 changed files with 235 additions and 136 deletions

View File

@@ -65,7 +65,7 @@ public class DistributedCacheTests
[DatabaseTheory, DatabaseData]
public async Task MultipleWritesOnSameKey_ShouldNotThrow(IDistributedCache cache)
{
await cache.SetAsync("test-duplicate", "some-value"u8.ToArray());
await cache.SetAsync("test-duplicate", "some-value"u8.ToArray());
await cache.SetAsync("test-duplicate", "some-value"u8.ToArray(), TestContext.Current.CancellationToken);
await cache.SetAsync("test-duplicate", "some-value"u8.ToArray(), TestContext.Current.CancellationToken);
}
}