Skip to content

Commit 82008f5

Browse files
committed
fixed tests
1 parent e0bdc36 commit 82008f5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/PolylineAlgorithm.Tests/PolylineOptionsBuilderTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static void WithSmallBufferSize() => PolylineEncodingOptionsBuilder.Create()
5050

5151
// Assert
5252
Assert.IsNotNull(exception);
53-
Assert.AreEqual("maxBufferSize", exception.ParamName);
53+
Assert.AreEqual("bufferSize", exception.ParamName);
5454
Assert.Contains("Buffer size must be greater than 11.", exception.Message);
5555
}
5656

@@ -99,6 +99,5 @@ static void WithNullLoggerFactory() => PolylineEncodingOptionsBuilder.Create()
9999
// Assert
100100
Assert.IsNotNull(exception);
101101
Assert.AreEqual("loggerFactory", exception.ParamName);
102-
Assert.Contains("Logger factory cannot be null.", exception.Message);
103102
}
104103
}

0 commit comments

Comments
 (0)