Skip to content

Commit c001f41

Browse files
committed
style: redundant whitespace
1 parent 89d1a7b commit c001f41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/datastructures/buffers/CircularBufferTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ void testFillThenEmptyThenReuseBuffer() {
186186
void testPutReturnsTrueOnlyIfPreviouslyEmpty() {
187187
CircularBuffer<String> buffer = new CircularBuffer<>(2);
188188

189-
assertTrue(buffer.put("one")); // was empty
189+
assertTrue(buffer.put("one")); // was empty
190190
org.junit.jupiter.api.Assertions.assertFalse(buffer.put("two")); // not empty
191191
org.junit.jupiter.api.Assertions.assertFalse(buffer.put("three")); // overwrite
192192
}

0 commit comments

Comments
 (0)