Skip to content

Commit 1defe17

Browse files
committed
using tr function to test
1 parent 915a913 commit 1defe17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/TransClassTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public void testTrans() throws Exception {
1111
RAFile raIn = new RAFile("test/TransClass/out.dat");
1212
int i = 0;
1313
for(String key : trIn.object.keySet()) {
14-
if((trIn.object.get(key)).equals(raIn.content.get(i))) {
14+
if(trIn.tr(key).equals(raIn.content.get(i))) {
1515
i++;
1616
} else {
1717
fail();

0 commit comments

Comments
 (0)