Skip to content

Commit

Permalink
fix maven dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
matozoid committed Oct 22, 2024
1 parent e4b92bc commit 7a39054
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.11.2</version>
<version>5.11.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.3</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand All @@ -43,6 +49,14 @@
<release>8</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</build>

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ What is it for?
---------------------
There is a common anti-pattern in (unit) testing where we write a test that makes a large print-out of the test result -
like a `.toString`, and `assertEquals` that to a print-out we have stored on disk. These tests are *great* because we
can any little change to the test result!
can see any little change to the test result!
These tests are *terrible* because every little change to the test result will break the test, even if it was totally
irrelevant to the test case.

Expand Down

0 comments on commit 7a39054

Please sign in to comment.