Skip to content

Commit

Permalink
Corrected name of methods in VerifyGenerationTest.
Browse files Browse the repository at this point in the history
  • Loading branch information
denvitaharen committed Dec 22, 2024
1 parent cd63c11 commit 5121a39
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class VerifyGenerationTest {

@Test
void verifyThatGeneratedModelDoesntHaveMethods() {
void verifyThatGeneratedModelDoesHaveMethods() {
var equalsMethod = getMethod(org.acme.equals.hashcode.model.Animal.class, "equals");
var hashCodeMethod = getMethod(org.acme.equals.hashcode.model.Animal.class, "hashCode");

Expand All @@ -23,7 +23,7 @@ void verifyThatGeneratedModelDoesntHaveMethods() {
}

@Test
void verifyThatGeneratedModelDoesHaveMethods() {
void verifyThatGeneratedModelDoesntHaveMethods() {
var equalsMethod = getMethod(org.acme.non.equals.hashcode.model.Animal.class, "equals");
var hashCodeMethod = getMethod(org.acme.non.equals.hashcode.model.Animal.class, "hashCode");

Expand Down

0 comments on commit 5121a39

Please sign in to comment.