Skip to content

Commit

Permalink
more test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
turingtestfail committed Feb 6, 2025
1 parent ab3d432 commit 6b4fe67
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void testUrlFormatDefault() throws Exception {
"http://localhost/context/cgf/wms?service=WMS&version=1.1.0&request=GetMap&layers=cgf%3ALines&"
+ "bbox=-97.4903565027649%2C-8.117456282619509E-4%2C-97.4871312635105%2C8.117456282619509E-4&"
+ "width=768&height=384&srs=MapML%3AWGS84&styles=&format=text%2Fhtml%3B%20subtype%3Dmapml&"
+ "format_options=mapmlmultiextent%3Dfalse%3Bmapmlfeatures%3Dfalse");
+ "format_options=mapmlmultiextent%3Afalse%3Bmapmlusefeatures%3Afalse%3Bmapmltiles%3Afalse");
}

@Test
Expand All @@ -63,7 +63,7 @@ public void testUrlFormatFeature() throws Exception {
"http://localhost/context/cgf/wms?service=WMS&version=1.1.0&request=GetMap&layers=cgf%3ALines&"
+ "bbox=-97.4903565027649%2C-8.117456282619509E-4%2C-97.4871312635105%2C8.117456282619509E-4&"
+ "width=768&height=384&srs=MapML%3AWGS84&styles=&format=text%2Fhtml%3B%20subtype%3Dmapml&"
+ "format_options=mapmlmultiextent%3Dfalse%3Bmapmlfeatures%3Dtrue");
+ "format_options=mapmlmultiextent%3Afalse%3Bmapmlusefeatures%3Atrue%3Bmapmltiles%3Afalse");
}

@Test
Expand All @@ -75,7 +75,7 @@ public void testURLFormatMulti() throws Exception {
"http://localhost/context/cgf/wms?service=WMS&version=1.1.0&request=GetMap&layers=cgf%3ALines&"
+ "bbox=-97.4903565027649%2C-8.117456282619509E-4%2C-97.4871312635105%2C8.117456282619509E-4&"
+ "width=768&height=384&srs=MapML%3AWGS84&styles=&format=text%2Fhtml%3B%20subtype%3Dmapml&"
+ "format_options=mapmlmultiextent%3Dtrue%3Bmapmlfeatures%3Dfalse");
+ "format_options=mapmlmultiextent%3Atrue%3Bmapmlusefeatures%3Afalse%3Bmapmltiles%3Afalse");
}

private static void assertLink(String link) {
Expand Down

0 comments on commit 6b4fe67

Please sign in to comment.