Skip to content

Commit 4189555

Browse files
Update DecimalParameterizedYdbTheoryTest.cs
1 parent 28277ea commit 4189555

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +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-
var got = await ctx.Items.AsNoTracking().SingleAsync(x => x.Id == e.Id);
73+
var got = await ctx.Items.SingleAsync(x => x.Id == e.Id);
7474

7575
var expected = Math.Round(value, s, MidpointRounding.ToEven);
7676
Assert.Equal(expected, got.Price);

0 commit comments

Comments
 (0)