Skip to content

Commit 8d34397

Browse files
committed
Delete 2 ignored tests, as per #827 (comment)
1 parent 1801b78 commit 8d34397

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

src/test/java/org/owasp/esapi/codecs/HTMLEntityCodecTest.java

-19
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,4 @@ public void testMixedBmpAndNonBmp(){
4949
String input = bmp + nonBMP;
5050
assertEquals(expected, codec.encode(new char[0], input));
5151
}
52-
53-
@Test
54-
/**
55-
* TODO: The following methods are unit tests I'm checking in for an issue to be worked and fixed.
56-
*/
57-
@Ignore("Pre check-in for issue #827")
58-
public void testIssue827() {
59-
String input = "/webapp/ux/home?d=1705914006565&status=login&ticket=1705914090394_HzJpTROVfhW-JhRW0OqDbHu7tWXXlgrKSUmOzIMsZNCcUIiYGMXX_Q%3D%3D&newsess=false&roleid=DP010101/0007&origin=ourprogram";
60-
String expected = input;
61-
assertEquals(expected, codec.decode(input));
62-
}
63-
64-
@Test
65-
@Ignore("Pre check-in for issue #827")
66-
public void testIssue827OnlyOR() {
67-
String input = "&origin=ourprogram";
68-
String expected = input;
69-
assertEquals(expected, codec.decode(input));
70-
}
7152
}

0 commit comments

Comments
 (0)