Skip to content

Commit

Permalink
Apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns committed Jul 31, 2023
1 parent 74e03d5 commit badd42f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

package io.temporal.client.schedules;

import static org.junit.Assume.assumeTrue;

import io.temporal.api.enums.v1.ScheduleOverlapPolicy;
import io.temporal.client.WorkflowOptions;
import io.temporal.common.converter.EncodedValues;
Expand All @@ -38,8 +40,6 @@
import org.junit.Rule;
import org.junit.Test;

import static org.junit.Assume.assumeTrue;

public class ScheduleTest {
@Rule
public SDKTestWorkflowRule testWorkflowRule =
Expand Down Expand Up @@ -86,10 +86,10 @@ private Schedule.Builder createTestSchedule() {
.build());
}

@Before
public void checkRealServer() {
assumeTrue("skipping for test server", SDKTestWorkflowRule.useExternalService);
}
@Before
public void checkRealServer() {
assumeTrue("skipping for test server", SDKTestWorkflowRule.useExternalService);
}

@Test
public void createSchedule() {
Expand Down

0 comments on commit badd42f

Please sign in to comment.