Skip to content

Commit 01ab3e8

Browse files
committed
style: mvn formatter format
1 parent 70e83ea commit 01ab3e8

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

validator-core/src/test/java/fr/ign/validator/command/options/DocumentEmpriseOptionTest.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ public void testWKTParsingOk() throws ParseException {
4545
WKTWriter2 writer = new WKTWriter2();
4646
String wkt = writer.write(result);
4747

48-
assertEquals("POLYGON ((1.186438253 47.90390196, 1.098884284 47.90390196, 1.098884284 47.83421197, 1.186438253 47.83421197, 1.186438253 47.90390196))", wkt);
48+
assertEquals(
49+
"POLYGON ((1.186438253 47.90390196, 1.098884284 47.90390196, 1.098884284 47.83421197, 1.186438253 47.83421197, 1.186438253 47.90390196))",
50+
wkt
51+
);
4952
}
5053

5154
@Test
@@ -64,7 +67,10 @@ public void testFileParsingOk() throws ParseException {
6467
WKTWriter2 writer = new WKTWriter2();
6568
String wkt = writer.write(result);
6669

67-
assertEquals("POLYGON ((1.186438253 47.90390196, 1.098884284 47.90390196, 1.098884284 47.83421197, 1.186438253 47.83421197, 1.186438253 47.90390196))", wkt);
70+
assertEquals(
71+
"POLYGON ((1.186438253 47.90390196, 1.098884284 47.90390196, 1.098884284 47.83421197, 1.186438253 47.83421197, 1.186438253 47.90390196))",
72+
wkt
73+
);
6874
}
6975

7076
@Test
@@ -82,7 +88,10 @@ public void testGeoJSONOk() throws ParseException {
8288
WKTWriter2 writer = new WKTWriter2();
8389
String wkt = writer.write(result);
8490

85-
assertEquals("POLYGON((1.186438253 47.90390196, 1.098884284 47.90390196, 1.098884284 47.83421197, 1.186438253 47.83421197, 1.186438253 47.90390196))", wkt);
91+
assertEquals(
92+
"POLYGON((1.186438253 47.90390196, 1.098884284 47.90390196, 1.098884284 47.83421197, 1.186438253 47.83421197, 1.186438253 47.90390196))",
93+
wkt
94+
);
8695
}
8796

8897
@Test(expected = ParseException.class)

0 commit comments

Comments
 (0)