Skip to content

Commit

Permalink
Run spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns committed Dec 6, 2024
1 parent dd9c3b2 commit 639cc8f
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

package io.temporal.workflow.nexus;

import static org.junit.Assume.assumeTrue;

import io.nexusrpc.handler.OperationHandler;
import io.nexusrpc.handler.OperationImpl;
import io.nexusrpc.handler.ServiceImpl;
Expand All @@ -39,8 +41,6 @@
import org.junit.Rule;
import org.junit.Test;

import static org.junit.Assume.assumeTrue;

public class CancelAsyncOperationTest {
@Rule
public SDKTestWorkflowRule testWorkflowRule =
Expand All @@ -52,8 +52,10 @@ public class CancelAsyncOperationTest {
@Before
public void checkRealServer() {
assumeTrue(
"Test flakes on real server because of delays in the Nexus Registry", SDKTestWorkflowRule.useExternalService);
"Test flakes on real server because of delays in the Nexus Registry",
SDKTestWorkflowRule.useExternalService);
}

@Test
public void asyncOperationImmediatelyCancelled() {
TestWorkflows.TestWorkflow1 workflowStub =
Expand Down

0 comments on commit 639cc8f

Please sign in to comment.