Skip to content

Commit

Permalink
Fix assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Feb 1, 2021
1 parent 7d6edad commit c704713
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ void twoEqualMethodsWithEqualParametersShouldHaveEqualMethodSourceHashCodes() {
@Test
void twoEqualMethodsWithUnequalParametersShouldHaveUnequalMethodSourceHashCodes() {
assertNotEquals(MethodSource.from("TestClass1", "testMethod1", "int, String").hashCode(),
MethodSource.from("TestClass1", "testMethod1", "float, int, String"));
MethodSource.from("TestClass1", "testMethod1", "float, int, String").hashCode());
}

@Test
Expand Down

0 comments on commit c704713

Please sign in to comment.