Skip to content

Commit c76d1b8

Browse files
chore: remove commented code
1 parent aab9841 commit c76d1b8

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

src/3-Tests/Application.Tests.Unit/Fixtures/TestsBaseFixture.cs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -83,19 +83,6 @@ private void CommonFixtureSetup()
8383
return Task.CompletedTask;
8484
});
8585

86-
//DemoThingRepository
87-
// .ConcurrencySafeUpdateAsync(Arg.Is<DemoThing>(x => DemoThings.Any(o => o.Id == x.Id)), Arg.Is<string>(x => x.Any()))
88-
// .Returns(args =>
89-
// {
90-
// var existDemoThing = DemoThings.FirstOrDefault(u => u.Id == ((DemoThing)args[0]).Id && u.Version == (string)args[1]);
91-
// if (existDemoThing != null)
92-
// {
93-
// DemoThings.Remove(existDemoThing);
94-
// DemoThings.Add((DemoThing)args[0]);
95-
// }
96-
97-
// return Task.CompletedTask;
98-
// });
9986

10087
DemoThingRepository
10188
.DeleteAsync(Arg.Is<string>(x => DemoThings.Any(o => o.Id == x)))

0 commit comments

Comments
 (0)