diff --git a/src/test/java/com/fauna/e2e/E2EFeedsTest.java b/src/test/java/com/fauna/e2e/E2EFeedsTest.java index 78b11d34..3614cf25 100644 --- a/src/test/java/com/fauna/e2e/E2EFeedsTest.java +++ b/src/test/java/com/fauna/e2e/E2EFeedsTest.java @@ -14,6 +14,7 @@ import com.fauna.response.QuerySuccess; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import java.util.ArrayList; @@ -47,6 +48,10 @@ public static void setup() { FaunaConfig config = FaunaConfig.builder().endpoint(LOCAL).secret("secret").build(); client = Fauna.client(config); + } + + @BeforeEach + public void setupEach() { productCollectionTs = Fixtures.ProductCollection(client); }