Skip to content

Commit d469a76

Browse files
committed
Fix ConstantsWithLookupImplCreatorTest expectations
Bug: #8611 Bug-Link: #8611 Change-Id: I4a6ab69dd839b12a1c70c7839f726bd0f21b62f9
1 parent e9922dd commit d469a76

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

user/test/com/google/gwt/i18n/rebind/ConstantsWithLookupImplCreatorTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public void testCodeForIntIsGeneratedSameAsWithoutPartitions() throws TypeOracle
161161
expected.outdent();
162162
expected.println("}");
163163

164-
expected.println("if(arg0.equals(\"intEntry\")) {");
164+
expected.println("if (arg0.equals(\"intEntry\")) {");
165165
expected.indent();
166166
expected.println("int answer = intEntry();");
167167
// Needed because the return template use '\n'
@@ -193,7 +193,7 @@ public void testCodeIsGeneratedSameAsWithoutPartitions() throws TypeOracleExcept
193193
expected.outdent();
194194
expected.println("}");
195195

196-
expected.println("if(arg0.equals(\"lookupMethod1\")) {");
196+
expected.println("if (arg0.equals(\"lookupMethod1\")) {");
197197
expected.indent();
198198
expected.print("String answer = lookupMethod1();");
199199
expected.print("\n");
@@ -203,7 +203,7 @@ public void testCodeIsGeneratedSameAsWithoutPartitions() throws TypeOracleExcept
203203
expected.outdent();
204204
expected.println("}");
205205

206-
expected.println("if(arg0.equals(\"lookupMethod2\")) {");
206+
expected.println("if (arg0.equals(\"lookupMethod2\")) {");
207207
expected.indent();
208208
expected.print("String answer = lookupMethod2();");
209209
expected.print("\n");
@@ -213,7 +213,7 @@ public void testCodeIsGeneratedSameAsWithoutPartitions() throws TypeOracleExcept
213213
expected.outdent();
214214
expected.println("}");
215215

216-
expected.println("if(arg0.equals(\"lookupMethod3\")) {");
216+
expected.println("if (arg0.equals(\"lookupMethod3\")) {");
217217
expected.indent();
218218
expected.print("String answer = lookupMethod3();");
219219
expected.print("\n");

0 commit comments

Comments
 (0)