Skip to content

Commit

Permalink
fix count() in feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Phong committed Apr 24, 2020
1 parent 1fdb8e5 commit 22a677f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void FT_FS_4_01() {
long result = instance.countByFeedbackStatus("INVALID");

//TEST FAIL
assertEquals(0, result);
testFail(result);
}

/**
Expand All @@ -118,7 +118,7 @@ public void FT_FS_4_03() {
long result = instance.countByFeedbackStatus(EMPTY_STRING);

//TEST FAIL
assertEquals(0, result);
testFail(result);
}

/**
Expand All @@ -131,7 +131,7 @@ public void FT_FS_4_04() {
long result = instance.countByFeedbackStatus(NULL_STRING);

//TEST FAIL
assertEquals(0, result);
testFail(result);
}

/**
Expand Down

0 comments on commit 22a677f

Please sign in to comment.