Remove sysout.

This commit is contained in:
Michael Simons
2022-09-29 23:01:35 +02:00
parent 1002d844f6
commit e4fa5bb1ca

View File

@@ -104,7 +104,6 @@ public class QueryResultIntegrationTests {
String expectedPerson = pet instanceof Cat ? "Sally" : "Billy";
assertThat(pet).extracting(Pet::getName).isEqualTo(expectedName);
assertThat(pet.getPerson()).isNotNull().extracting(Person::getName).isEqualTo(expectedPerson);
System.out.println("what?");
});
}
}