File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/seedu/address/logic/parser Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public void parseCommand_list() throws Exception {
100
100
@ Test
101
101
public void parseCommand_start () throws Exception {
102
102
StartCommand command = (StartCommand ) parser .parseCommand (
103
- StartCommand .COMMAND_WORD + " " + INDEX_FIRST_PROJECT .getOneBased (), Status .PROJECT );
103
+ StartCommand .COMMAND_WORD + " " + INDEX_FIRST_PROJECT .getOneBased (), Status .CATALOGUE );
104
104
assertEquals (new StartCommand (INDEX_FIRST_PROJECT ), command );
105
105
}
106
106
@@ -171,9 +171,9 @@ public void parseCommand_invalidScope_throwsInvalidScopeException() {
171
171
172
172
try {
173
173
parser .parseCommand (
174
- StartCommand .COMMAND_WORD + " " + INDEX_FIRST_PROJECT .getOneBased (), Status .CATALOGUE );
174
+ StartCommand .COMMAND_WORD + " " + INDEX_FIRST_PROJECT .getOneBased (), Status .PROJECT );
175
175
} catch (Exception e ) {
176
- assertEquals (new InvalidScopeException (Status .PROJECT , Status .CATALOGUE ), e );
176
+ assertEquals (new InvalidScopeException (Status .CATALOGUE , Status .PROJECT ), e );
177
177
}
178
178
179
179
try {
You can’t perform that action at this time.
0 commit comments