Skip to content

Commit

Permalink
changed equal to not equal in assert
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevinizevbigie committed Aug 26, 2024
1 parent 2ab4dd7 commit 2d70cdd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public async void EmailLog_Should_BeLogged_When_SuccessfullyQueued() {

var want = 1;
var got = card._value.EmailLogs.Count();
Assert.NotEqual(want, got);
Assert.Equal(want, got);

}
}

0 comments on commit 2d70cdd

Please sign in to comment.