We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7654e6a commit 88e13e7Copy full SHA for 88e13e7
src/NHibernate.Test/NHSpecificTest/GH3530/Fixture.cs
@@ -189,7 +189,7 @@ public void TestDouble(CultureInfo from, CultureInfo to)
189
{
190
var entity = session.Get<LocaleEntity>(id);
191
192
- Assert.True(Math.Abs(doubleValue - entity.DoubleValue) < double.Epsilon);
+ Assert.True(Math.Abs(doubleValue - entity.DoubleValue) < double.Epsilon, $"Expected: {doubleValue}\nBut was: {entity.DoubleValue}\n");
193
}
194
195
0 commit comments