Skip to content

Commit

Permalink
v 24.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 20, 2024
1 parent 30153b3 commit 6121037
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ If you're using Maven, add this to your pom file:
<dependency>
<groupId>com.approvaltests</groupId>
<artifactId>approvaltests</artifactId>
<version>24.1.0</version>
<version>24.2.0</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -92,7 +92,7 @@ If you're using Maven, add this to your pom file:

```gradle
dependencies {
testImplementation("com.approvaltests:approvaltests:24.1.0")
testImplementation("com.approvaltests:approvaltests:24.2.0")
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ private static Mutable<String> hijackInlineReporter(Options options)
void testSemiAutomaticMessage()
{
var expected = """
41
***** DELETE ME TO APPROVE *****
""";
41
***** DELETE ME TO APPROVE *****
""";
var options = new Options().inline(expected, InlineOptions.semiAutomatic());
try
{
Expand All @@ -198,11 +198,11 @@ void testSemiAutomaticMessage()
void testSemiAutomaticWithPreviousApproved()
{
var expected = """
42
***** DELETE ME TO APPROVE *****
vvvvv PREVIOUS RESULT vvvvv
41
""";
42
***** DELETE ME TO APPROVE *****
vvvvv PREVIOUS RESULT vvvvv
41
""";
var options = new Options().inline(expected, InlineOptions.semiAutomaticWithPreviousApproved());
try
{
Expand Down

0 comments on commit 6121037

Please sign in to comment.