Skip to content

Commit

Permalink
add assertions to getOptOutResultsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Rwolfe-Nava committed Jun 11, 2024
1 parent d8454f4 commit edb76f7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ void getRecordStatusTest() {
@Test
void getOptOutResultsTest() {
OptOutResults results = optOutProcessing.getOptOutResults();
assertEquals(results, null);
assertNotNull(results);
assertEquals(TEST_TOTAL_RESULT_COUNT, results.getTotalFromDB());;
}

}

0 comments on commit edb76f7

Please sign in to comment.