Skip to content

Commit

Permalink
Fix the compilation error in the test
Browse files Browse the repository at this point in the history
Signed-off-by: Sheng Chen <sheche@microsoft.com>
  • Loading branch information
jdneo authored and fbricon committed Jul 26, 2019
1 parent 8728ca1 commit f052950
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public void testComplexInvertVariable() throws Exception {
buf.append(" boolean c = bar(a);\n");
buf.append(" return a;\n");
buf.append(" }\n");
buf.append(" public void bar(boolean value) {\n");
buf.append(" public boolean bar(boolean value) {\n");
buf.append(" return !value;\n");
buf.append(" }\n");
buf.append("}\n");
Expand All @@ -125,7 +125,7 @@ public void testComplexInvertVariable() throws Exception {
buf.append(" boolean c = bar(!notA);\n");
buf.append(" return !notA;\n");
buf.append(" }\n");
buf.append(" public void bar(boolean value) {\n");
buf.append(" public boolean bar(boolean value) {\n");
buf.append(" return !value;\n");
buf.append(" }\n");
buf.append("}\n");
Expand Down

0 comments on commit f052950

Please sign in to comment.