JAL-3121 round trip GFF attributes including map-valued attributes
[jalview.git] / test / jalview / io / vcf / VCFLoaderTest.java
index 87cf727..97b609d 100644 (file)
@@ -3,7 +3,6 @@ package jalview.io.vcf;
 import static jalview.io.gff.SequenceOntologyI.SEQUENCE_VARIANT;
 import static org.testng.Assert.assertEquals;
 import static org.testng.Assert.assertNull;
-import static org.testng.Assert.assertSame;
 import static org.testng.Assert.assertTrue;
 
 import jalview.bin.Cache;
@@ -762,16 +761,4 @@ public class VCFLoaderTest
     assertEquals(sf.getEnd(), 15);
     assertEquals(sf.getDescription(), "T,C");
   }
-
-  @Test(groups = "Functional")
-  public void testDecodeSpecialCharacters() throws IOException
-  {
-    String encoded = "hello world";
-    String decoded = VCFLoader.decodeSpecialCharacters(encoded);
-    assertSame(encoded, decoded); // no change needed
-
-    encoded = "ab%3Acd%3Bef%3Dgh%25ij%2Ckl%3A";
-    decoded = VCFLoader.decodeSpecialCharacters(encoded);
-    assertEquals(decoded, "ab:cd;ef=gh%ij,kl:");
-  }
 }
\ No newline at end of file