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) {
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 }
You can’t perform that action at this time.
0 commit comments