Skip to content

Commit 74d7540

Browse files
author
Petr Sramek
committed
fixed issue with test
1 parent 2b00872 commit 74d7540

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PolylineAlgorithm.Tests/Validation/CoordinateRangeTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ public void Equals_CoordinateRange_True(double min, double max) {
116116
[DynamicData(nameof(Constructor_Valid_Parameters))]
117117
public void Equals_CoordinateRange_False(double min, double max) {
118118
// Arrange
119-
Coordinate @this = new(min, max);
120-
Coordinate other = new(0, 0);
119+
CoordinateRange @this = new(min, max);
120+
CoordinateRange other = new(0, 0);
121121

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

0 commit comments

Comments
 (0)