We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d1a7b commit c001f41Copy full SHA for c001f41
src/test/java/com/thealgorithms/datastructures/buffers/CircularBufferTest.java
@@ -186,7 +186,7 @@ void testFillThenEmptyThenReuseBuffer() {
186
void testPutReturnsTrueOnlyIfPreviouslyEmpty() {
187
CircularBuffer<String> buffer = new CircularBuffer<>(2);
188
189
- assertTrue(buffer.put("one")); // was empty
+ assertTrue(buffer.put("one")); // was empty
190
org.junit.jupiter.api.Assertions.assertFalse(buffer.put("two")); // not empty
191
org.junit.jupiter.api.Assertions.assertFalse(buffer.put("three")); // overwrite
192
}
0 commit comments