Skip to content

Commit 8ced7e0

Browse files
committed
uopdated tests a
1 parent d024448 commit 8ced7e0

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/PolylineAlgorithm/Polyline.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@
66
namespace PolylineAlgorithm;
77

88
using System;
9-
using System.Buffers;
109
using System.Diagnostics;
11-
using System.Diagnostics.CodeAnalysis;
1210
using System.Runtime.InteropServices;
13-
using System.Text;
1411

1512
/// <summary>
1613
/// Represents an immutable, read-only encoded polyline string.

tests/PolylineAlgorithm.Tests/PolylineTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ public void ToString_Returns_Correct_String(int size) {
179179
/// </summary>
180180
/// <param name="value">The string value.</param>
181181
[TestMethod]
182-
[DynamicData(nameof(LengthParameters))]
183-
public void ToString_Returns_Empty_String(int size) {
182+
public void ToString_Returns_Empty_String() {
184183
// Arrange
185184
Polyline polyline = new Polyline();
186185
string expected = string.Empty;

0 commit comments

Comments
 (0)