Skip to content

Commit 02799ca

Browse files
Update ByteBufferInputStreamTest.java
1 parent 599c615 commit 02799ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-firestore/src/test/java/com/google/firebase/firestore/util/ByteBufferInputStreamTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void testHandlesNegativeBytes() throws IOException {
6868
ByteBufferInputStream inputStream = new ByteBufferInputStream(source);
6969

7070
int read = inputStream.read();
71-
// The integer value for byte -1 is 255, as the last three bits are set for -1 in bytes.
71+
// The integer value for byte -1 is 255, as the last three bits are set for -1.
7272
assertEquals(0xFF, read);
7373
assertEquals(-1, (byte) read);
7474
}

0 commit comments

Comments
 (0)