Skip to content

Commit bcec5f5

Browse files
authored
Add spaces around curly braces
1 parent 4582fc1 commit bcec5f5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/IBI.WZDx.UnitTests/WzdxSerializerTests.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -810,15 +810,16 @@ string expectedFeedJson
810810
ImpactedCdsCurbZones: new CdsCurbZonesReference[]
811811
{
812812
new CdsCurbZonesReference(
813-
CdsCurbZoneIds: new string[] {"Zone Id 1", "Zone Id 2"},
813+
CdsCurbZoneIds: new string[] { "Zone Id 1", "Zone Id 2" },
814814
CdsCurbsApiUrl: "API Url"
815815
)
816816
},
817817
WorkZoneType: WorkZoneType.Static
818818
),
819819
Geometry: new RoadEventFeatureGeometry(
820820
Type: RoadEventFeatureGeometryType.LineString,
821-
Coordinates: new double[][] {
821+
Coordinates: new double[][]
822+
{
822823
new double[]
823824
{
824825
-93.77668405099996,
@@ -1908,4 +1909,4 @@ private static void DeserializeFeed_JsonNotValid_ThrowsJsonException<TWzdxFeed>(
19081909

19091910
Assert.Throws<JsonException>(action);
19101911
}
1911-
}
1912+
}

0 commit comments

Comments
 (0)