Skip to content

Commit 01c9c1a

Browse files
Merge branch 'mrschmidt/bundle/bytebufferoutputstream' of github.com:firebase/firebase-android-sdk into mrschmidt/bundle/bytebufferoutputstream
2 parents b0618f2 + 02799ca commit 01c9c1a

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)