Skip to content

Commit 1665536

Browse files
committed
Merge branch 'bugfix/lock_inversion' of https://github.com/dwcullop/DynamicData into bugfix/lock_inversion
2 parents 7544f8c + 92f1afe commit 1665536

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/DynamicData.Tests/Cache/SourceCacheFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public async Task DirectCrossWriteDoesNotDeadlock()
251251
.Transform(static (item, _) => new TestItem("from-b-" + item.Key, item.Value))
252252
.PopulateInto(cacheA);
253253

254-
var barrier = new Barrier(2);
254+
using var barrier = new Barrier(2);
255255

256256
var taskA = Task.Run(() =>
257257
{

0 commit comments

Comments
 (0)