Skip to content

Commit f7df0c7

Browse files
Generate async files
1 parent 644975b commit f7df0c7

File tree

1 file changed

+1
-1
lines changed
  • src/NHibernate.Test/Async/NHSpecificTest/GH3530

1 file changed

+1
-1
lines changed

src/NHibernate.Test/Async/NHSpecificTest/GH3530/Fixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public async Task TestDoubleAsync(CultureInfo from, CultureInfo to)
201201
{
202202
var entity = await (session.GetAsync<LocaleEntity>(id));
203203

204-
Assert.True(Math.Abs(doubleValue - entity.DoubleValue) < double.Epsilon);
204+
Assert.True(Math.Abs(doubleValue - entity.DoubleValue) < double.Epsilon, $"Expected: {doubleValue}\nBut was: {entity.DoubleValue}\n");
205205
}
206206
}
207207

0 commit comments

Comments
 (0)