Skip to content

Commit 3e1dc01

Browse files
committed
Fix a test case
1 parent 52aabf6 commit 3e1dc01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/test/java/com/alibaba/datax/common/util/ConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ public void test_getKeys() {
461461
.from("{\"a\":{\"b\":{\"c\":[0],\"B\": \"B\"},\"A\": \"A\"}}");
462462
System.out.println(JSON.toJSONString(configuration.getKeys()));
463463
Assert.assertTrue(JSON.toJSONString(configuration.getKeys()).equals(
464-
"[\"a.b.B\",\"a.b.c[0]\",\"a.A\"]"));
464+
"[\"a.b.B\",\"a.A\",\"a.b.c[0]\"]"));
465465
}
466466

467467
@Test

0 commit comments

Comments
 (0)