Skip to content

Commit

Permalink
Modified BirdAndCategoryTest
Browse files Browse the repository at this point in the history
  • Loading branch information
MANN3005 committed Nov 7, 2023
1 parent 70324a7 commit 2d99bee
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public class BirdAndCategoryTest {
*/
@Test
public void testBirdAndCategory() {
birdAndCategory.setSize("Small");
assertEquals("Small", birdAndCategory.getSize());
model.setSize("Small");
assertEquals("Small", model.getSize());

birdAndCategory.setSize("Large");
assertEquals("Large", birdAndCategory.getSize());
model.setSize("Large");
assertEquals("Large", model.getSize());
}

/**
Expand Down

0 comments on commit 2d99bee

Please sign in to comment.