Skip to content

Commit 8187ea8

Browse files
committed
Fix whitespace linter errors
1 parent fa89418 commit 8187ea8

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

internal/sync/channel_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ func Test_Channel_Unbuffered(t *testing.T) {
210210
{
211211
name: "MultipleReceivesSends",
212212
fn: func(t *testing.T, c *channel[int]) {
213-
214213
ctx := Background()
215214
s := NewScheduler()
216215

internal/tracing/tracing.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111

1212
func SpanWithStartTime(
1313
ctx context.Context, tracer trace.Tracer, name string, spanID trace.SpanID, startTime time.Time, opts ...trace.SpanStartOption) trace.Span {
14-
1514
opts = append(opts, trace.WithTimestamp(startTime), trace.WithSpanKind(trace.SpanKindConsumer))
1615
_, span := tracer.Start(ctx,
1716
name,

tester/tester.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,6 @@ func (wt *workflowTester[TResult]) scheduleActivity(wfi *core.WorkflowInstance,
714714
),
715715
)
716716
}
717-
718717
} else {
719718
executor := activity.NewExecutor(wt.logger, wt.tracer, wt.converter, wt.propagators, wt.registry)
720719
activityResult, activityErr = executor.ExecuteActivity(context.Background(), &backend.ActivityTask{

tester/tester_timers_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ func Test_Timers_MultipleTimers(t *testing.T) {
219219

220220
wf := func(ctx workflow.Context) error {
221221
for i := 0; i < 10; i++ {
222-
223222
tctx, cancel := workflow.WithCancel(ctx)
224223
workflow.ScheduleTimer(tctx, time.Millisecond*10)
225224
workflow.ExecuteActivity[string](ctx, workflow.DefaultActivityOptions, activity1).Get(ctx)

0 commit comments

Comments
 (0)