Skip to content

Commit

Permalink
Update VetTests.java
Browse files Browse the repository at this point in the history
break a test
  • Loading branch information
devopstg76 authored May 3, 2024
1 parent c930f9b commit 4762079
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void testSerialization() {
vet.setId(123);
Vet other = (Vet) SerializationUtils.deserialize(SerializationUtils.serialize(vet));
assertThat(other.getFirstName()).isEqualTo(vet.getFirstName());
assertThat(other.getLastName()).isEqualTo(vet.getLastName());
assertThat(other.getLastName()).isEqualTo("Tom");
assertThat(other.getId()).isEqualTo(vet.getId());
}

Expand Down

0 comments on commit 4762079

Please sign in to comment.