Skip to content

Commit 46cfdc0

Browse files
committed
change
1 parent 7cd18a3 commit 46cfdc0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/EFCore.Ydb/test/EntityFrameworkCore.Ydb.FunctionalTests/Query/DecimalParameterizedYdbTheoryTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ public async Task Decimal_roundtrips_or_rounds_like_ado(int p, int s, decimal va
7070
ctx.Add(e);
7171
await ctx.SaveChangesAsync();
7272

73-
await using var ctx2 = NewCtx(p, s);
74-
var got = await ctx2.Items.SingleAsync(x => x.Id == e.Id);
73+
var got = await ctx.Items.SingleAsync(x => x.Id == e.Id);
7574

7675
Assert.Equal(value, got.Price);
7776

0 commit comments

Comments
 (0)