From e136f1d37aa65eab1ea05fe48be835b8824bba0c Mon Sep 17 00:00:00 2001 From: Siwan Yang Date: Thu, 13 Jun 2024 12:55:37 -0400 Subject: [PATCH] import assertions --- .../io/openliberty/guides/inventory/InventoryEndpointIT.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/finish/inventory/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java b/finish/inventory/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java index 48c7f38..b769bfc 100644 --- a/finish/inventory/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java +++ b/finish/inventory/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java @@ -28,7 +28,10 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.TestMethodOrder; -import static org.junit.jupiter.api.Assertions; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + @TestMethodOrder(MethodOrderer.OrderAnnotation.class) public class InventoryEndpointIT {