From 05cc54efcc9271b08178c103b0a0a6d0cb28f0fa Mon Sep 17 00:00:00 2001 From: Alexander Setyawan Date: Sun, 14 Apr 2024 18:35:48 +0800 Subject: [PATCH] Fix cluster command test --- .../seedu/address/logic/commands/ClusterCommandTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/seedu/address/logic/commands/ClusterCommandTest.java b/src/test/java/seedu/address/logic/commands/ClusterCommandTest.java index 4a8c98b6b5d..0671367019c 100644 --- a/src/test/java/seedu/address/logic/commands/ClusterCommandTest.java +++ b/src/test/java/seedu/address/logic/commands/ClusterCommandTest.java @@ -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; @@ -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() {