File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tests/org/intellij/erlang/quickfixes Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,13 +61,13 @@ protected String getTestDataPath() {
61
61
62
62
public void testExportsToShowInPopupAllEmpty () {
63
63
myFixture .configureByFile ("without.erl" );
64
- assertEquals (getExportsToShow (myFixture .getFile ()).size (), 0 );
64
+ assertEquals (0 , getExportsToShow (myFixture .getFile ()).size ());
65
65
myFixture .configureByFile ("fewEmpties.erl" );
66
- assertEquals (getExportsToShow (myFixture .getFile ()).size (), 0 );
66
+ assertEquals (0 , getExportsToShow (myFixture .getFile ()).size ());
67
67
myFixture .configureByFile ("fewNonEmpties1.erl" );
68
- assertEquals (getExportsToShow (myFixture .getFile ()).size (), 2 );
68
+ assertEquals (2 , getExportsToShow (myFixture .getFile ()).size ());
69
69
myFixture .configureByFile ("fewNonEmpties2.erl" );
70
- assertEquals (getExportsToShow (myFixture .getFile ()).size (), 2 );
70
+ assertEquals (2 , getExportsToShow (myFixture .getFile ()).size ());
71
71
}
72
72
73
73
private static List <ErlangExport > getExportsToShow (PsiFile file ) {
You can’t perform that action at this time.
0 commit comments