Skip to content

Commit a59f497

Browse files
committed
remove test println statements
1 parent dc0a698 commit a59f497

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/test/java/gr/geompokon/bitarray/BitArrayTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ void remove_test(List<Boolean> elementsToRemove) {
114114
// given
115115
List<Boolean> authority = new ArrayList<>(elementsToRemove.size());
116116
List<Integer> removeIndices = TestUtils.getRemoveIndices(elementsToRemove.size());
117-
System.out.println(removeIndices);
118117
bitArray.addAll(elementsToRemove);
119118
authority.addAll(elementsToRemove);
120119

@@ -221,7 +220,6 @@ void fromString_throws_on_bad_string(String faultyString) {
221220
// when/then
222221
assertThatThrownBy(() -> {
223222
BitArray impossibleList = BitArray.fromString(faultyString);
224-
System.out.println(impossibleList);
225223
impossibleList.add(Boolean.FALSE);
226224
}).isInstanceOf(UnknownFormatConversionException.class);
227225
}

0 commit comments

Comments
 (0)