Skip to content

Commit

Permalink
fix(#1426): duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Oct 18, 2024
1 parent e494ec3 commit e4da593
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,6 @@ void updatesOnlyTargetFromSourceIfNoTargetAndCacheIsNotCacheable(@TempDir final
final Path res = new Footprint(source, target, cache).apply(
src -> FootprintTest.LAMBDA_CONTENT
);
MatcherAssert.assertThat(
"Footprint has to return target path, but it didn't",
res,
Matchers.equalTo(target)
);
MatcherAssert.assertThat(
"Target file must be updated from content function, but it didn't",
new TextOf(target).asString(),
Expand All @@ -129,11 +124,6 @@ void updatesOnlyTargetFromSourceIfYoungerTargetAndCacheIsNotCacheable(@TempDir f
final Path res = new Footprint(
source, target, cache
).apply(src -> FootprintTest.LAMBDA_CONTENT);
MatcherAssert.assertThat(
"Footprint has to return target path, but it didn't",
res,
Matchers.equalTo(target)
);
MatcherAssert.assertThat(
"Target file must be updated from content function, but it didn't",
new TextOf(target).asString(),
Expand Down

0 comments on commit e4da593

Please sign in to comment.