Skip to content

Commit bab690a

Browse files
committed
Fix test.
1 parent 6d3ae30 commit bab690a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/test/java/ch/cyberduck/core/synchronization/ChecksumComparisonServiceTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ public void testCompare() throws Exception {
1919
public Checksum getChecksum() {
2020
return new Checksum(HashAlgorithm.md5, "a", null);
2121
}
22-
}, new PathAttributes().setChecksum(new Checksum(HashAlgorithm.md5, "a"))
22+
}, new PathAttributes().setChecksum(new Checksum(HashAlgorithm.md5, "a", null))
2323
));
2424

2525
assertEquals(Comparison.notequal, s.compare(Path.Type.file, new PathAttributes() {
2626
@Override
2727
public Checksum getChecksum() {
2828
return new Checksum(HashAlgorithm.md5, "b", null);
2929
}
30-
}, new PathAttributes().setChecksum(new Checksum(HashAlgorithm.md5, "a"))));
30+
}, new PathAttributes().setChecksum(new Checksum(HashAlgorithm.md5, "a", null))));
3131
}
3232

3333
@Test

0 commit comments

Comments
 (0)