Index: trunk/test/unit/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerTest.java	(revision 15058)
+++ trunk/test/unit/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerTest.java	(revision 15064)
@@ -16,5 +16,4 @@
 import java.util.Set;
 
-import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
@@ -87,7 +86,11 @@
         new DataSet(n1, n2);
         assertTrue(check.test(n1));
-        assertEquals("deprecated", check.getErrorForPrimitive(n1).getMessage());
-        assertEquals("natural=marsh is deprecated", check.getErrorForPrimitive(n1).getDescription());
-        assertEquals(Severity.WARNING, check.getErrorForPrimitive(n1).getSeverity());
+
+        final Collection<TestError> errors = check.getErrorsForPrimitive(n1);
+        assertEquals(1, errors.size());
+        TestError err = errors.iterator().next();
+        assertEquals("deprecated", err.getMessage());
+        assertEquals("natural=marsh is deprecated", err.getDescription());
+        assertEquals(Severity.WARNING, err.getSeverity());
         assertEquals("Sequence: Fix of natural=marsh is deprecated", check.fixPrimitive(n1).getDescriptionText());
         assertEquals("{natural=}", ((ChangePropertyCommand) check.fixPrimitive(n1).getChildren().iterator().next()).getTags().toString());
@@ -240,5 +243,4 @@
      */
     @Test
-    @Ignore("not fixed yet")
     public void testTicket14287() throws Exception {
         final MapCSSTagChecker test = buildTagChecker(
@@ -300,5 +302,4 @@
      */
     @Test
-    @Ignore("not fixed yet")
     public void testTicket12627() throws Exception {
         doTestNaturalWood(12627, "overlapping.osm", 1, 1);
@@ -310,5 +311,4 @@
      */
     @Test
-    @Ignore("not fixed yet")
     public void testTicket14289() throws Exception {
         doTestNaturalWood(14289, "example2.osm", 3, 3);
