Bump versions.

This commit is contained in:
Stephan Schnabel 2020-09-16 16:14:22 +02:00
parent afa294ba4f
commit 776cbf6cdf
Signed by: stephan.schnabel
GPG key ID: F74FE2422AA07290
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ package io.kokuwa.micronaut.logging;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.MethodOrderer.Alphanumeric;
import org.junit.jupiter.api.MethodOrderer.MethodName;
import org.junit.jupiter.api.TestMethodOrder;
import org.slf4j.MDC;
@ -14,7 +14,7 @@ import io.micronaut.test.annotation.MicronautTest;
* @author Stephan Schnabel
*/
@MicronautTest
@TestMethodOrder(Alphanumeric.class)
@TestMethodOrder(MethodName.class)
public abstract class AbstractTest {
@BeforeEach