Skip to content

Commit

Permalink
Migrate mapstruct core tests to JUnit Jupiter
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphr committed Apr 25, 2021
1 parent 2d66f08 commit 627be53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/pom.xml
Expand Up @@ -22,8 +22,8 @@

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion core/src/test/java/org/mapstruct/factory/MappersTest.java
Expand Up @@ -7,7 +7,7 @@

import static org.assertj.core.api.Assertions.assertThat;

import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.mapstruct.test.model.Foo;
import org.mapstruct.test.model.SomeClass;

Expand Down

0 comments on commit 627be53

Please sign in to comment.