Skip to content

Commit

Permalink
✅ Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
allan-on committed Mar 24, 2020
1 parent 3138253 commit b629f38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void getWFHZScoreValuesInvokesDatabaseQueryCorrectly() {
Mockito.verify(sqliteDatabase, Mockito.times(1)).query(
ArgumentMatchers.eq(WeightForHeightRepository.TABLE_NAME),
ArgumentMatchers.isNull(String[].class),
ArgumentMatchers.eq(GrowthMonitoringConstants.ColumnHeaders.COLUMN_SEX + " = ? AND " + GrowthMonitoringConstants.ColumnHeaders.HEIGHT + " = ? " + COLLATE_NOCASE),
ArgumentMatchers.eq(GrowthMonitoringConstants.ColumnHeaders.COLUMN_SEX + " = ? AND " + GrowthMonitoringConstants.ColumnHeaders.HEIGHT + " = ? "),
ArgumentMatchers.eq(new String[]{"1", "60.0"}),
ArgumentMatchers.isNull(String.class), ArgumentMatchers.isNull(String.class), ArgumentMatchers.isNull(String.class), ArgumentMatchers.isNull(String.class));
}
Expand Down

0 comments on commit b629f38

Please sign in to comment.