update test formatting

This commit is contained in:
Joe DeFilippo 2023-09-06 10:37:09 -04:00
parent 81991e3594
commit 12028a34e3

View file

@ -1,19 +1,14 @@
package org.springframework.samples.petclinic; package org.springframework.samples.petclinic;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assert.fail;
import org.junit.Test; import org.junit.jupiter.api.Test;
import org.junit.Assert.*;
public class FailingTest { class VetTests {
@Test @Test
public void checkValues(){ void fail() {
assertThat(true).isEqualTo(false); assertThat(true).isEqualTo(false);
} }
} }