fix encoding problem
authorAndreas Müller <a.mueller@bgbm.org>
Wed, 11 Jul 2012 20:30:01 +0000 (20:30 +0000)
committerAndreas Müller <a.mueller@bgbm.org>
Wed, 11 Jul 2012 20:30:01 +0000 (20:30 +0000)
cdmlib-model/src/test/java/eu/etaxonomy/cdm/model/location/PointTest.java

index 67b7ba214e96729348ce1eedb3947c16e430f9e8..b3f10fb04096787465cfae6132a9149a141b220f 100644 (file)
@@ -179,10 +179,10 @@ public class PointTest {
                //#2962 (rounding of tertiers)\r
                try {\r
                        point1.setLatitudeByParsing("37\u00B07'44\"N");\r
-                       Assert.assertEquals("Result should be 37°7'44\"N not 37°7'44.999\"N", "37°7'44\"N", point1.getLatitudeSexagesimal().toString());\r
+                       Assert.assertEquals("Result should be 37\u00B07'44\"N not 37\u00B07'44.999\"N", "37\u00B07'44\"N", point1.getLatitudeSexagesimal().toString());\r
                        \r
                        point1.setLatitudeByParsing("37\u00B07'45\"N");\r
-                       Assert.assertEquals("Result should be 37°7'45\"N not 37°7'45.\"N", "37°7'45\"N", point1.getLatitudeSexagesimal().toString());\r
+                       Assert.assertEquals("Result should be 37\u00B07'45\"N not 37\u00B07'45.\"N", "37\u00B07'45\"N", point1.getLatitudeSexagesimal().toString());\r
                        \r
                } catch (ParseException e) {\r
                        Assert.fail("No parsing error should occur");\r