Skip to content

Commit 395a61b

Browse files
committed
- B fixed default value for showReporter
1 parent ab4e7c1 commit 395a61b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

approvaltests-tests/src/test/java/org/approvaltests/InlineApprovalsTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
package org.approvaltests;
22

3-
import org.approvaltests.core.ApprovalFailureReporter;
43
import org.approvaltests.core.Options;
54
import org.approvaltests.inline.InlineComparator;
65
import org.approvaltests.reporters.*;
7-
import org.junit.jupiter.api.Assertions;
86
import org.junit.jupiter.api.Test;
97

108
import java.util.List;

approvaltests/src/main/java/org/approvaltests/core/Options.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public Options and(Function1<Options, Options> optionsUpdate)
3333
}
3434
public Options inline(String expected)
3535
{
36-
return inline(expected, false);
36+
return inline(expected, true);
3737
}
3838
public Options inline(String expected, boolean showCode)
3939
{

0 commit comments

Comments
 (0)