From f3a67551c2eba8da3c9dd637b1a1b17ef24bff7f Mon Sep 17 00:00:00 2001 From: Anyul Rivas Date: Sun, 17 Mar 2024 15:50:14 +0100 Subject: [PATCH] chore: optimize imports --- .../samples/petclinic/system/CrashControllerTests.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/test/java/org/springframework/samples/petclinic/system/CrashControllerTests.java b/src/test/java/org/springframework/samples/petclinic/system/CrashControllerTests.java index 108983e9e..3dddd8858 100644 --- a/src/test/java/org/springframework/samples/petclinic/system/CrashControllerTests.java +++ b/src/test/java/org/springframework/samples/petclinic/system/CrashControllerTests.java @@ -16,12 +16,10 @@ package org.springframework.samples.petclinic.system; -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatExceptionOfType; -import static org.junit.jupiter.api.Assertions.assertThrows; - import org.junit.jupiter.api.Test; +import static org.assertj.core.api.Assertions.assertThatExceptionOfType; + /** * Test class for {@link CrashController} *