Skip to content

Commit

Permalink
Add spaces around curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
j-d-b authored Dec 8, 2023
1 parent 4582fc1 commit bcec5f5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/IBI.WZDx.UnitTests/WzdxSerializerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -810,15 +810,16 @@ string expectedFeedJson
ImpactedCdsCurbZones: new CdsCurbZonesReference[]
{
new CdsCurbZonesReference(
CdsCurbZoneIds: new string[] {"Zone Id 1", "Zone Id 2"},
CdsCurbZoneIds: new string[] { "Zone Id 1", "Zone Id 2" },
CdsCurbsApiUrl: "API Url"
)
},
WorkZoneType: WorkZoneType.Static
),
Geometry: new RoadEventFeatureGeometry(
Type: RoadEventFeatureGeometryType.LineString,
Coordinates: new double[][] {
Coordinates: new double[][]
{
new double[]
{
-93.77668405099996,
Expand Down Expand Up @@ -1908,4 +1909,4 @@ private static void DeserializeFeed_JsonNotValid_ThrowsJsonException<TWzdxFeed>(

Assert.Throws<JsonException>(action);
}
}
}

0 comments on commit bcec5f5

Please sign in to comment.