m/pkg/combinectx: reformat
Seems like this slipped past the cracks on original review - we should
add CI for this.
Change-Id: I35cc1d14710109d4d2d0a60b573400b65cb7d350
Reviewed-on: https://review.monogon.dev/c/monogon/+/212
Reviewed-by: Mateusz Zalega <mateusz@monogon.tech>
diff --git a/metropolis/pkg/combinectx/example_test.go b/metropolis/pkg/combinectx/example_test.go
index a6bb3aa..f0cd70f 100644
--- a/metropolis/pkg/combinectx/example_test.go
+++ b/metropolis/pkg/combinectx/example_test.go
@@ -16,7 +16,7 @@
// some long-term local worker context, while the second is a context from some
// incoming request.
ctxA, cancelA := context.WithCancel(context.Background())
- ctxB, cancelB := context.WithTimeout(context.Background(), time.Millisecond * 100)
+ ctxB, cancelB := context.WithTimeout(context.Background(), time.Millisecond*100)
defer cancelA()
defer cancelB()