Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 34b5758

Browse files
comment out print
1 parent 07efbf9 commit 34b5758

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test/java/com/fishercoder/_653Test.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import com.fishercoder.solutions._653;
66
import org.junit.Before;
77
import org.junit.BeforeClass;
8-
import org.junit.Ignore;
98
import org.junit.Test;
109

1110
import java.util.ArrayList;
@@ -82,7 +81,6 @@ public void test5(){
8281
}
8382

8483
@Test
85-
@Ignore
8684
public void test6(){
8785
root = TreeUtils.constructBinaryTree(new ArrayList<>(Arrays.asList(
8886
3393, 2264, 4972, 1908, 3252, 4128, 5140, 965, 2018,
@@ -96,7 +94,7 @@ public void test6(){
9694
null, null, 96, null, null, null, 1303)));
9795
expected = true;
9896
assertEquals(expected, listSolution.findTarget(root, 5831));
99-
TreeUtils.printBinaryTree(root);
97+
// TreeUtils.printBinaryTree(root);
10098
// assertEquals(expected, mapSolution.findTarget(root, 5831));
10199
}
102100
}

0 commit comments

Comments
 (0)