JAL-3121 'attributes map' in GFF3 without special 'jvmap_' token
[jalview.git] / test / jalview / util / StringUtilsTest.java
index 9cc8d1c..37506c0 100644 (file)
@@ -311,5 +311,9 @@ public class StringUtilsTest
     // decode space also; %3E is not decoded to .
     assertEquals("a=b%3Ec d=,",
             StringUtils.urlDecode("a%3Db%3Ec+d%3D%2C", ";=, "));
+
+    // decode encoded % (%25)
+    assertEquals("a,=;\t%z",
+            StringUtils.urlDecode("a%2C%3D%3B%09%25z", ";=,\t%"));
   }
 }