Skip to content

Commit 3519cb6

Browse files
committed
cleanup
1 parent 6215b55 commit 3519cb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/org/intellij/erlang/quickfixes/ErlangFunctionFixesTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ protected String getTestDataPath() {
6161

6262
public void testExportsToShowInPopupAllEmpty() {
6363
myFixture.configureByFile("without.erl");
64-
assertEquals(getExportsToShow(myFixture.getFile()).size(), 0);
64+
assertEquals(0, getExportsToShow(myFixture.getFile()).size());
6565
myFixture.configureByFile("fewEmpties.erl");
66-
assertEquals(getExportsToShow(myFixture.getFile()).size(), 0);
66+
assertEquals(0, getExportsToShow(myFixture.getFile()).size());
6767
myFixture.configureByFile("fewNonEmpties1.erl");
68-
assertEquals(getExportsToShow(myFixture.getFile()).size(), 2);
68+
assertEquals(2, getExportsToShow(myFixture.getFile()).size());
6969
myFixture.configureByFile("fewNonEmpties2.erl");
70-
assertEquals(getExportsToShow(myFixture.getFile()).size(), 2);
70+
assertEquals(2, getExportsToShow(myFixture.getFile()).size());
7171
}
7272

7373
private static List<ErlangExport> getExportsToShow(PsiFile file) {

0 commit comments

Comments
 (0)