Index: /trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java
===================================================================
--- /trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java	(revision 12729)
+++ /trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java	(revision 12730)
@@ -18,4 +18,5 @@
 import org.junit.Test;
 import org.openstreetmap.josm.JOSMFixture;
+import org.openstreetmap.josm.data.coor.LatLon;
 import org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker;
 import org.openstreetmap.josm.data.validation.tests.TagChecker;
@@ -65,5 +66,5 @@
                     if (!TagChecker.isTagInPresets(key, value)) {
                         // If not, check if we have either a deprecated mapcss test for it
-                        Node n = new Node();
+                        Node n = new Node(LatLon.NORTH_POLE);
                         Way w = new Way();
                         Relation r = new Relation();
@@ -71,4 +72,5 @@
                         w.put(key, value);
                         r.put(key, value);
+                        new DataSet(n, w, r);
                         if (mapCssTagChecker.getErrorsForPrimitive(n, false).isEmpty()
                          && mapCssTagChecker.getErrorsForPrimitive(w, false).isEmpty()
