We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4bb1d3 commit 56a690fCopy full SHA for 56a690f
1 file changed
Orm/Xtensive.Orm.Tests/Issues/AggregatesRelatedIssues/IssueJira0786/MaxProcessingTest.cs
@@ -1051,11 +1051,11 @@ public void NullableFloatFieldExpressionTest06() =>
1051
1052
[Test]
1053
public void NullableDoubleFieldExpressionTest01() =>
1054
- TestMax(i => i.NullableDoubleValue1 * i.NullableDoubleValue1);
+ TestMaxWithAccuracy(i => i.NullableDoubleValue1 * i.NullableDoubleValue1, DoubleValueAccuracy);
1055
1056
1057
public void NullableDoubleFieldExpressionTest02() =>
1058
- TestMax(i => (decimal?) i.NullableDoubleValue1 * i.NullableDecimalValue);
+ TestMaxWithAccuracy(i => (decimal?) i.NullableDoubleValue1 * i.NullableDecimalValue, DoubleValueAccuracy);
1059
1060
1061
public void NullableDecimalFieldExpressionTest() =>
0 commit comments