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() {
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 ) {
You can’t perform that action at this time.
0 commit comments