Skip to content

Commit

Permalink
test(refactor): split variables declaration in test (#2398)
Browse files Browse the repository at this point in the history
I am ready to merge.
  • Loading branch information
zielint0 authored and surli committed Aug 27, 2018
1 parent c084a3c commit 9a127a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/java/spoon/test/main/MainTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,9 @@ public void test() {

private void checkContractCtScanner(CtPackage pack) {
class Counter {
int scan, enter, exit = 0;
int scan;
int enter;
int exit;
}

final Counter counter = new Counter();
Expand Down

0 comments on commit 9a127a6

Please sign in to comment.