Skip to content

Commit

Permalink
Merge pull request #239 from alex-setyawan/tests
Browse files Browse the repository at this point in the history
Tests
  • Loading branch information
alex-setyawan authored Apr 14, 2024
2 parents 2977e0f + 05cc54e commit 2777a34
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import static seedu.address.testutil.TypicalPersons.BENSON;
import static seedu.address.testutil.TypicalPersons.CARL;
import static seedu.address.testutil.TypicalPersons.DANIEL;
import static seedu.address.testutil.TypicalPersons.getTypicalAddressBook;
import static seedu.address.testutil.TypicalPersons.getTypicalPersonsAddressBook;

import java.util.Arrays;
import java.util.Collections;
Expand All @@ -25,8 +25,8 @@
*/
public class ClusterCommandTest {

private final Model model = new ModelManager(getTypicalAddressBook(), new UserPrefs());
private final Model expectedModel = new ModelManager(getTypicalAddressBook(), new UserPrefs());
private final Model model = new ModelManager(getTypicalPersonsAddressBook(), new UserPrefs());
private final Model expectedModel = new ModelManager(getTypicalPersonsAddressBook(), new UserPrefs());

@Test
public void equals() {
Expand Down

0 comments on commit 2777a34

Please sign in to comment.