Skip to content

Commit 749e142

Browse files
author
jpomykala
committed
Adjust test
1 parent 106ee66 commit 749e142

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/test/java/io/simplelocalize/cli/processor/keys/ReactIntlKeyExtractorTest.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,16 @@ public void shouldExtractKeysFromLines() throws Exception {
2323

2424
//then
2525
Assertions.assertThat(keys).hasSize(8);
26-
Assertions.assertThat(keys).contains("VISITS", "LIKES", "CREATED_COUNT", "COMMENTS");
26+
Assertions.assertThat(keys).containsExactlyInAnyOrder(
27+
"VISITS",
28+
"LIKES",
29+
"CREATED_COUNT",
30+
"COMMENTS",
31+
"COVER_IMAGE.PLACEHOLDER",
32+
"COVER_IMAGE.TITLE",
33+
"ACHIEVEMENTS",
34+
"AVAILABLE_SOON"
35+
);
2736
}
2837

2938
@Test

0 commit comments

Comments
 (0)