Skip to content

Commit

Permalink
[misc] Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
slarse committed May 12, 2020
1 parent 4ef433e commit 2226dea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/se/kth/spork/cli/CliTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ class CliTest {
@ParameterizedTest
@ArgumentsSource(Util.ConflictSourceProvider.class)
void merge_shouldExitNonZero_onConflict(Util.TestSources sources) {
String[] args = {"merge", sources.left.toString(), sources.base.toString(), sources.right.toString()};
String[] args = {sources.left.toString(), sources.base.toString(), sources.right.toString()};

int exitCode = new CommandLine(new Cli.Merge()).execute(args);

assertNotEquals(0, exitCode);
assertTrue(exitCode > 0);
}

@ParameterizedTest
Expand Down

0 comments on commit 2226dea

Please sign in to comment.