Skip to content

Commit

Permalink
Enable debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Jul 2, 2023
1 parent 1d3d943 commit 7a02570
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,14 @@ void nonMintPermissionsDoNotCauseFailure() {
@Test
@DisplayName("is capable of removing a read-only file in a read-only dir")
void readOnlyFileInReadOnlyDirDoesNotCauseFailure() {
executeTestsForClass(ReadOnlyFileInReadOnlyDirDoesNotCauseFailureTestCase.class).testEvents()//
executeTestsForClass(ReadOnlyFileInReadOnlyDirDoesNotCauseFailureTestCase.class).testEvents().debug()//
.assertStatistics(stats -> stats.started(1).succeeded(1));
}

@Test
@DisplayName("is capable of removing a read-only file in a dir in a read-only dir")
void readOnlyFileInNestedReadOnlyDirDoesNotCauseFailure() {
executeTestsForClass(ReadOnlyFileInDirInReadOnlyDirDoesNotCauseFailureTestCase.class).testEvents()//
executeTestsForClass(ReadOnlyFileInDirInReadOnlyDirDoesNotCauseFailureTestCase.class).testEvents().debug()//
.assertStatistics(stats -> stats.started(1).succeeded(1));
}

Expand Down

0 comments on commit 7a02570

Please sign in to comment.