Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit f6b62d6

Browse files
committed
Fixed some unit test assertion calls
1 parent 579ad30 commit f6b62d6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/androidTest/java/com/couchbase/lite/DatabaseAttachmentTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -811,10 +811,10 @@ public void testFollowWithRevpos() throws Exception {
811811

812812
AttachmentInternal attachment = new AttachmentInternal("attachment", attachInfo);
813813
Map<String, Object> stub = attachment.asStubDictionary();
814-
assertEquals(stub.get("content_type"), "text/plain");
815-
assertEquals(stub.get("digest"), "sha1-gOHUOBmIMoDCrMuGyaLWzf1hQTE=");
816-
assertEquals(stub.get("revpos"), 2);
817-
assertEquals(stub.get("stub"), true);
814+
assertEquals("text/plain", stub.get("content_type"));
815+
assertEquals("sha1-gOHUOBmIMoDCrMuGyaLWzf1hQTE=", stub.get("digest"));
816+
assertEquals(2, stub.get("revpos"));
817+
assertEquals(true, stub.get("stub"));
818818
assertNull(stub.get("follows"));
819819
}
820820

0 commit comments

Comments
 (0)