File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
src/test/java/gr/geompokon/bitarray Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,6 @@ void remove_test(List<Boolean> elementsToRemove) {
114
114
// given
115
115
List <Boolean > authority = new ArrayList <>(elementsToRemove .size ());
116
116
List <Integer > removeIndices = TestUtils .getRemoveIndices (elementsToRemove .size ());
117
- System .out .println (removeIndices );
118
117
bitArray .addAll (elementsToRemove );
119
118
authority .addAll (elementsToRemove );
120
119
@@ -221,7 +220,6 @@ void fromString_throws_on_bad_string(String faultyString) {
221
220
// when/then
222
221
assertThatThrownBy (() -> {
223
222
BitArray impossibleList = BitArray .fromString (faultyString );
224
- System .out .println (impossibleList );
225
223
impossibleList .add (Boolean .FALSE );
226
224
}).isInstanceOf (UnknownFormatConversionException .class );
227
225
}
You can’t perform that action at this time.
0 commit comments