Skip to content

Commit

Permalink
Merge pull request #325 from opensrp/fix-card-fab
Browse files Browse the repository at this point in the history
  • Loading branch information
ekigamba authored Nov 22, 2022
2 parents 040bff0 + 02059ab commit 446bc79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.10.0-SNAPSHOT
VERSION_NAME=0.10.1-SNAPSHOT
VERSION_CODE=1
GROUP=org.smartregister
POM_SETTING_DESCRIPTION=OpenSRP Client Child Library
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
android:orientation="horizontal"
android:paddingTop="12dp"
android:paddingBottom="12dp"
android:visibility="visible">
android:visibility="gone">

<ImageView
android:id="@+id/fab_image"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public void testCloseChildRecordShouldCallRemoveChildFromRegisterMethod() {

baseChildRegisterPresenter.closeChildRecord(jsonString);

Mockito.verify(interactorSpy, Mockito.times(1)).removeChildFromRegister(Mockito.eq(jsonString), Mockito.anyString());
Mockito.verify(interactorSpy, Mockito.times(1)).removeChildFromRegister(Mockito.eq(jsonString), Mockito.nullable(String.class));
}

@Test
Expand Down

0 comments on commit 446bc79

Please sign in to comment.