From 0a3774d3f7ab334102f51ed1b5979559a1e6fff7 Mon Sep 17 00:00:00 2001 From: gbrodman Date: Fri, 20 Aug 2021 09:07:38 -0600 Subject: [PATCH] Add withDsAndCloudSql to flow test (#1293) * Add withDsAndCloudSql to flow test Not sure why this wasn't failing before --- core/src/test/java/google/registry/flows/FlowRunnerTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/test/java/google/registry/flows/FlowRunnerTest.java b/core/src/test/java/google/registry/flows/FlowRunnerTest.java index 39fc503b9..71695de75 100644 --- a/core/src/test/java/google/registry/flows/FlowRunnerTest.java +++ b/core/src/test/java/google/registry/flows/FlowRunnerTest.java @@ -51,7 +51,8 @@ import org.mockito.Mockito; class FlowRunnerTest { @RegisterExtension - final AppEngineExtension appEngineRule = new AppEngineExtension.Builder().build(); + final AppEngineExtension appEngineRule = + new AppEngineExtension.Builder().withDatastoreAndCloudSql().build(); private final FlowRunner flowRunner = new FlowRunner(); private final EppMetric.Builder eppMetricBuilder = EppMetric.builderForRequest(new FakeClock());