Skip to content

Commit

Permalink
Fixed org.junit.Assert.assertThat deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rgoldberg authored and remkop committed Dec 1, 2021
1 parent 66e8a34 commit 451d6d1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

import static com.google.testing.compile.Compiler.javac;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

public final class YamlAssert {
private YamlAssert() {
Expand Down

0 comments on commit 451d6d1

Please sign in to comment.