Skip to content

Commit

Permalink
change naming addressbook to fitbiz
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonggiee committed Apr 6, 2020
1 parent 883f46d commit 6b89b21
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import static seedu.address.logic.commands.CommandTestUtil.assertCommandSuccess;
import static seedu.address.logic.commands.ExerciseCommandTestUtil.DESC_BENCH;
import static seedu.address.logic.commands.ExerciseCommandTestUtil.DESC_PUSHUP;
import static seedu.address.testutil.TypicalClients.getTypicalAddressBook;
import static seedu.address.testutil.TypicalClients.getTypicalFitBiz;
import static seedu.address.testutil.TypicalIndexes.INDEX_FIRST_CLIENT;
import static seedu.address.testutil.TypicalIndexes.INDEX_FIRST_EXERCISE;
import static seedu.address.testutil.TypicalIndexes.INDEX_SECOND_EXERCISE;
Expand Down Expand Up @@ -39,7 +39,7 @@ public class EditExerciseCommandTest {

@BeforeEach
public void setUp() {
model = new ModelManager(getTypicalAddressBook(), new UserPrefs(), new ClientInView());
model = new ModelManager(getTypicalFitBiz(), new UserPrefs(), new ClientInView());
clientInView = model.getFilteredClientList().get(INDEX_FIRST_CLIENT.getZeroBased());
}

Expand Down Expand Up @@ -76,7 +76,7 @@ public void execute_validIndexUnfilteredList_success() {

String expectedMessage = String.format(EditExerciseCommand.MESSAGE_EDIT_EXERCISE_SUCCESS, editedExercise);

ModelManager expectedModel = new ModelManager(getTypicalAddressBook(), new UserPrefs(), new ClientInView());
ModelManager expectedModel = new ModelManager(getTypicalFitBiz(), new UserPrefs(), new ClientInView());
Client clientInViewExpected = expectedModel.getFilteredClientList().get(INDEX_FIRST_CLIENT.getZeroBased());
expectedModel.setClientInView(clientInViewExpected);

Expand Down

0 comments on commit 6b89b21

Please sign in to comment.