Skip to content

Commit ba69080

Browse files
committed
testing: Testing error in unit tests
1 parent 13515da commit ba69080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FixedPointLib/tests/FixedMathTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public void Clamp_ShouldReturnClampedValue(decimal a, decimal min, decimal max,
7676
[Theory]
7777
[InlineData(0.5, 0.5)]
7878
[InlineData(-0.5, 0)]
79-
[InlineData(1.5, 1)]
79+
[InlineData(1.5, 2)]
8080
public void Clamp01_ShouldReturnClamped01Value(decimal a, decimal expected)
8181
{
8282
Fixed result = FixedMath.Clamp01(a);

0 commit comments

Comments
 (0)