Skip to content

Commit

Permalink
Fix cluster command test
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-setyawan committed Apr 14, 2024
1 parent 86fd03d commit 05cc54e
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 05cc54e

Please sign in to comment.