Skip to content

Commit

Permalink
Fix flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Nov 30, 2023
1 parent 110e4fc commit 0d5f0a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ abstract class MacUnitTest {
val copy = mac.copy()
copy.reset()

assertNotEquals(copy, mac)
assertNotEquals(copy.hashCode(), mac.hashCode())
assertEquals(expectedResetSmallHash, copy.doFinal().encodeToString(TestData.base16))
assertEquals(expectedUpdateSmallHash, mac.doFinal().encodeToString(TestData.base16))
}
Expand Down

0 comments on commit 0d5f0a8

Please sign in to comment.