Skip to content

Commit 6121037

Browse files
committed
v 24.2.0
1 parent 30153b3 commit 6121037

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ If you're using Maven, add this to your pom file:
8383
<dependency>
8484
<groupId>com.approvaltests</groupId>
8585
<artifactId>approvaltests</artifactId>
86-
<version>24.1.0</version>
86+
<version>24.2.0</version>
8787
<scope>test</scope>
8888
</dependency>
8989
```
@@ -92,7 +92,7 @@ If you're using Maven, add this to your pom file:
9292

9393
```gradle
9494
dependencies {
95-
testImplementation("com.approvaltests:approvaltests:24.1.0")
95+
testImplementation("com.approvaltests:approvaltests:24.2.0")
9696
}
9797
```
9898

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ private static Mutable<String> hijackInlineReporter(Options options)
181181
void testSemiAutomaticMessage()
182182
{
183183
var expected = """
184-
41
185-
***** DELETE ME TO APPROVE *****
186-
""";
184+
41
185+
***** DELETE ME TO APPROVE *****
186+
""";
187187
var options = new Options().inline(expected, InlineOptions.semiAutomatic());
188188
try
189189
{
@@ -198,11 +198,11 @@ void testSemiAutomaticMessage()
198198
void testSemiAutomaticWithPreviousApproved()
199199
{
200200
var expected = """
201-
42
202-
***** DELETE ME TO APPROVE *****
203-
vvvvv PREVIOUS RESULT vvvvv
204-
41
205-
""";
201+
42
202+
***** DELETE ME TO APPROVE *****
203+
vvvvv PREVIOUS RESULT vvvvv
204+
41
205+
""";
206206
var options = new Options().inline(expected, InlineOptions.semiAutomaticWithPreviousApproved());
207207
try
208208
{

0 commit comments

Comments
 (0)