Index: trunk/test/unit/org/openstreetmap/josm/io/GeoJSONWriterTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/io/GeoJSONWriterTest.java	(revision 10165)
+++ trunk/test/unit/org/openstreetmap/josm/io/GeoJSONWriterTest.java	(revision 10171)
@@ -1,4 +1,6 @@
 // License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.io;
+
+import static org.junit.Assert.assertEquals;
 
 import org.junit.BeforeClass;
@@ -11,7 +13,7 @@
 import org.openstreetmap.josm.gui.preferences.projection.ProjectionPreference;
 
-import static org.hamcrest.CoreMatchers.*;
-import static org.junit.Assert.*;
-
+/**
+ * Unit tests of {@link GeoJSONWriter} class.
+ */
 public class GeoJSONWriterTest {
 
@@ -24,6 +26,9 @@
     }
 
+    /**
+     * Unit test
+     */
     @Test
-    public void testPoint() throws Exception {
+    public void testPoint() {
         final Node node = new Node(new LatLon(12.3, 4.56));
         node.put("name", "foo");
@@ -33,5 +38,5 @@
         final OsmDataLayer layer = new OsmDataLayer(ds, "foo", null);
         final GeoJSONWriter writer = new GeoJSONWriter(layer, ProjectionPreference.wgs84.getProjection());
-        assertThat(writer.write().trim(), is(("" +
+        assertEquals(("" +
                 "{\n" +
                 "    'type':'FeatureCollection',\n" +
@@ -59,5 +64,5 @@
                 "        }\n" +
                 "    ]\n" +
-                "}").replace("'", "\"")));
+                "}").replace("'", "\""), writer.write().trim());
     }
 }
