Skip to content

Commit

Permalink
Miscellaneous cleanups
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=134122917
  • Loading branch information
blickly committed Sep 23, 2016
1 parent acea890 commit 1bb9cbe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/com/google/javascript/jscomp/J2clCheckPassTest.java
Expand Up @@ -48,8 +48,8 @@ public void testReferenceEquality_noWarning_other() {
} }


public void testReferenceEquality_noWarning_null() { public void testReferenceEquality_noWarning_null() {
for (String typeName : REFERENCE_EQUALITY_TYPE_PATTERNS.keySet()) { for (String value : REFERENCE_EQUALITY_TYPE_PATTERNS.values()) {
setFilename(REFERENCE_EQUALITY_TYPE_PATTERNS.get(typeName)); setFilename(value);
testNoWarning( testNoWarning(
LINE_JOINER.join( LINE_JOINER.join(
"/** @constructor */", "/** @constructor */",
Expand All @@ -60,8 +60,8 @@ public void testReferenceEquality_noWarning_null() {
} }


public void testReferenceEquality_noWarning_undefined() { public void testReferenceEquality_noWarning_undefined() {
for (String typeName : REFERENCE_EQUALITY_TYPE_PATTERNS.keySet()) { for (String value : REFERENCE_EQUALITY_TYPE_PATTERNS.values()) {
setFilename(REFERENCE_EQUALITY_TYPE_PATTERNS.get(typeName)); setFilename(value);
testNoWarning( testNoWarning(
LINE_JOINER.join( LINE_JOINER.join(
"/** @constructor */", "/** @constructor */",
Expand All @@ -72,8 +72,8 @@ public void testReferenceEquality_noWarning_undefined() {
} }


public void testReferenceEquality_warning() { public void testReferenceEquality_warning() {
for (String typeName : REFERENCE_EQUALITY_TYPE_PATTERNS.keySet()) { for (String value : REFERENCE_EQUALITY_TYPE_PATTERNS.values()) {
setFilename(REFERENCE_EQUALITY_TYPE_PATTERNS.get(typeName)); setFilename(value);
testWarning( testWarning(
LINE_JOINER.join( LINE_JOINER.join(
"/** @constructor */", "/** @constructor */",
Expand Down

0 comments on commit 1bb9cbe

Please sign in to comment.