Skip to content

Commit

Permalink
Use setUp() instead of constructor to do test setup.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=158189620
  • Loading branch information
bellashim authored and brad4d committed Jun 7, 2017
1 parent 8bd1c76 commit 3f0bd9f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
* Test case for {@link GatherExternProperties}.
*/
public final class GatherExternPropertiesTest extends CompilerTestCase {
public GatherExternPropertiesTest() {
super();
@Override
protected void setUp() throws Exception {
super.setUp();
enableTypeCheck();
}

Expand Down

0 comments on commit 3f0bd9f

Please sign in to comment.