Skip to content

Commit

Permalink
Former-commit-id: 1cd2315cad53018509eb0b790c69617a310ef487
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Dec 30, 2014
1 parent 791ab41 commit 8bcadaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ch/cyberduck/cli/SingleTransferItemFinderTest.java
Expand Up @@ -89,7 +89,7 @@ public void testUploadDirectory() throws Exception {
assertFalse(found.isEmpty());
final Iterator<TransferItem> iter = found.iterator();
final Local temp = LocalFactory.get("/tmp");
assertEquals(EnumSet.of(Path.Type.directory, Path.Type.symboliclink), temp.getType());
assertTrue(temp.getType().contains(Path.Type.directory));
assertEquals(new TransferItem(new Path("/remote/tmp", EnumSet.of(Path.Type.directory)), temp), iter.next());
}

Expand Down

0 comments on commit 8bcadaf

Please sign in to comment.