Skip to content

Commit

Permalink
fixes #147
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeldrama committed Jun 25, 2013
1 parent d9d6428 commit 05d4f5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void importManyCorpora() {
run("import data/corpus1 data/corpus2 data/corpus3");

List<String> expected = Arrays.asList("data/corpus1 data/corpus2 data/corpus3".split(" "));
verify(administration).importCorpora(expected, true);
verify(administration).importCorpora(expected, false);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private void verifyPostImport(InOrder inOrder)
// a correct import requires this order
private void verifyImport(InOrder inOrder, String path)
{
inOrder.verify(administrationDao).importCorpus(path, true);
inOrder.verify(administrationDao).importCorpus(path, false);
// // create the staging area
// inOrder.verify(administrationDao).createStagingArea(true);
//
Expand Down

0 comments on commit 05d4f5e

Please sign in to comment.