File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/owasp/esapi/codecs/percent Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
package org .owasp .esapi .codecs .percent ;
16
16
17
+ import static org .junit .Assert .assertEquals ;
17
18
import static org .owasp .esapi .codecs .percent .PercentCodecStringTest .PERCENT_CODEC_IMMUNE ;
18
19
19
- import org .junit .Assert ;
20
20
import org .junit .Test ;
21
21
import org .owasp .esapi .codecs .PercentCodec ;
22
22
/**
@@ -47,10 +47,10 @@ public void failsUTF16Conversions() {
47
47
String actualDecodeChar = codec .decode (input );
48
48
int actualChar = (int )actualDecodeChar .charAt (0 );
49
49
50
- Assert . assertEquals (incorrectDecodeExpect , actualChar );
50
+ assertEquals (incorrectDecodeExpect , actualChar );
51
51
52
52
//This works as expected.
53
- Assert . assertEquals (input , codec .encode (encodeImmune , decodedValue ));
53
+ assertEquals (input , codec .encode (encodeImmune , decodedValue ));
54
54
}
55
55
56
56
}
You can’t perform that action at this time.
0 commit comments