Skip to content

Commit 9bc6fc3

Browse files
author
Petr Sramek
committed
fixed test
1 parent e5d1d9f commit 9bc6fc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PolylineAlgorithm.Tests/Validation/CoordinateRangeTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public void Equals_CoordinateRange_True(double min, double max) {
117117
public void Equals_CoordinateRange_False(double min, double max) {
118118
// Arrange
119119
CoordinateRange @this = new(min, max);
120-
CoordinateRange other = new(0, 0);
120+
CoordinateRange other = new(0, 1);
121121

122122
// Act
123123
bool result = @this.Equals(other);

0 commit comments

Comments
 (0)