Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 0778fba

Browse files
committed
lint
1 parent fc30be3 commit 0778fba

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

  • google-cloud-dialogflow-cx/src/test/java/com/google/cloud/dialogflow/cx/v3beta1/it

google-cloud-dialogflow-cx/src/test/java/com/google/cloud/dialogflow/cx/v3beta1/it/ITSystemTest.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,9 @@ public static void setUp() throws IOException, ExecutionException, InterruptedEx
173173
CreateFlowRequest.newBuilder().setParent(agentName).setFlow(flow).build();
174174
Flow flowResponse = flowsClient.createFlow(createFlowRequest);
175175
flowName = flowResponse.getName();
176-
177-
Flow trainFlow = Flow.newBuilder()
176+
177+
Flow trainFlow =
178+
Flow.newBuilder()
178179
.setNluSettings(NLUSETTINGS)
179180
.setDisplayName(DISPLAY_NAME)
180181
.setDescription(DESCRIPTION)
@@ -183,7 +184,6 @@ public static void setUp() throws IOException, ExecutionException, InterruptedEx
183184
CreateFlowRequest.newBuilder().setParent(agentName).setFlow(trainFlow).build();
184185
Flow trainFlowResponse = flowsClient.createFlow(createTrainFlowRequest);
185186
trainFlowName = trainFlowResponse.getName();
186-
187187

188188
/* create intents */
189189
intentsClient = IntentsClient.create();
@@ -257,8 +257,9 @@ public static void tearDown() {
257257
/* delete flows */
258258
DeleteFlowRequest deleteFlowRequest = DeleteFlowRequest.newBuilder().setName(flowName).build();
259259
flowsClient.deleteFlow(deleteFlowRequest);
260-
261-
DeleteFlowRequest deleteTrainFlowRequest = DeleteFlowRequest.newBuilder().setName(trainFlowName).build();
260+
261+
DeleteFlowRequest deleteTrainFlowRequest =
262+
DeleteFlowRequest.newBuilder().setName(trainFlowName).build();
262263
flowsClient.deleteFlow(deleteTrainFlowRequest);
263264
flowsClient.close();
264265

0 commit comments

Comments
 (0)