Skip to content

Commit

Permalink
Fix a typo in a test.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=124886715
  • Loading branch information
vrana authored and blickly committed Jun 15, 2016
1 parent fc5daad commit d07eed8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ public void test_forStatement() throws Exception {
String externs = ""
+ "var obj = {};\n"
+ "obj.prop = 6;"
+ "var CONSTANT = 3;n";
+ "var CONSTANT = 3;\n";
String originalCode = "for (var i = CONSTANT; i < 5; i++) {}";
String expectedCode = "for (var i = CONSTANT2; i < 5; i++) {}";
String template = ""
Expand Down

0 comments on commit d07eed8

Please sign in to comment.