Skip to content

Commit 724a9d7

Browse files
committed
Fixed failing tests
1 parent 2496d42 commit 724a9d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/ffxivcensus/gatherer/ConsoleTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public void testConsoleFullOptions() throws Exception {
168168
@Test
169169
public void TestConsoleHelpDefault() throws Exception {
170170

171-
String strHelp = "usage: java -jar XIVStats-Gatherer-Java.jar [-bmqvxFPS] -s startid -f";
171+
String strHelp = "usage: java -jar XIVStats-Gatherer-Java.jar [-abmqvxDFPS] -s startid -f";
172172

173173
//Test for a help dialog displayed upon failure
174174
String[] args = {""};
@@ -180,7 +180,7 @@ public void TestConsoleHelpDefault() throws Exception {
180180
@Test
181181
public void TestConsoleHelpOnFail() throws Exception {
182182

183-
String strHelp = "usage: java -jar XIVStats-Gatherer-Java.jar [-bmqvxFPS] -s startid -f";
183+
String strHelp = "usage: java -jar XIVStats-Gatherer-Java.jar [-abmqvxDFPS] -s startid -f";
184184
//Test for a help dialog displayed upon failure
185185
String[] args = {"-s 0"};
186186
GathererController gc = Console.run(args);
@@ -192,7 +192,7 @@ public void TestConsoleHelpOnFail() throws Exception {
192192
@Test
193193
public void TestConsoleHelp() throws Exception {
194194

195-
String strHelp = "usage: java -jar XIVStats-Gatherer-Java.jar [-bmqvxFPS] -s startid -f";
195+
String strHelp = "usage: java -jar XIVStats-Gatherer-Java.jar [-abmqvxDFPS] -s startid -f";
196196

197197
//First test for a user requested help dialog
198198
String[] args = {"--help"};

0 commit comments

Comments
 (0)