Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Aug 4, 2023
1 parent 07ab816 commit fbdb035
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void testMove() throws Exception {
assertTrue(new BrickFindFeature(session).find(target));
assertEquals(test.attributes(), target.attributes());
final PathAttributes targetAttr = new BrickAttributesFinderFeature(session).find(target);
assertEquals(test.attributes(), targetAttr);
assertEquals(test.attributes().getModificationDate(), targetAttr.getModificationDate());
assertEquals(Comparison.equal, session.getHost().getProtocol().getFeature(ComparisonService.class).compare(Path.Type.file, test.attributes(), targetAttr));
assertEquals(Comparison.equal, session.getHost().getProtocol().getFeature(ComparisonService.class).compare(Path.Type.file, target.attributes(), targetAttr));
new BrickDeleteFeature(session).delete(Collections.singletonList(target), new DisabledLoginCallback(), new Delete.DisabledCallback());
Expand Down

0 comments on commit fbdb035

Please sign in to comment.