Index: trunk/test/unit/org/openstreetmap/josm/tools/TextTagParserTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/tools/TextTagParserTest.java	(revision 7637)
+++ trunk/test/unit/org/openstreetmap/josm/tools/TextTagParserTest.java	(revision 7786)
@@ -39,7 +39,7 @@
     @Test
     public void testTNformat() {
-        String txt = "   a  \t  1   \n\n\n  b=2 \t the value with \"quotes\"";
+        String txt = "   a  \t  1   \n\n\n  b\t2 \n c \t the value with \"quotes\"";
         Map<String, String> correctTags = new HashMap<String, String>() { {
-            put("a", "1"); put("b=2", "the value with \"quotes\"");
+            put("a", "1"); put("b", "2"); put("c", "the value with \"quotes\"");
         }};
         Map<String, String> tags = TextTagParser.readTagsFromText(txt);
