Commit 522cfc68 authored by Geon Kim's avatar Geon Kim Committed by Péter Szilágyi

swarm: fix typos (#17473)

parent a063fe9b
...@@ -63,7 +63,7 @@ func TestRun(t *testing.T) { ...@@ -63,7 +63,7 @@ func TestRun(t *testing.T) {
} }
}) })
t.Run("cancelation", func(t *testing.T) { t.Run("cancellation", func(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond) ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond)
defer cancel() defer cancel()
...@@ -164,7 +164,7 @@ func TestDone(t *testing.T) { ...@@ -164,7 +164,7 @@ func TestDone(t *testing.T) {
select { select {
case <-time.After(timeout): case <-time.After(timeout):
t.Error("done channel closing timmed out") t.Error("done channel closing timed out")
case <-sim.Done(): case <-sim.Done():
if d := time.Since(start); d < sleep { if d := time.Since(start); d < sleep {
t.Errorf("done channel closed sooner then expected: %s", d) t.Errorf("done channel closed sooner then expected: %s", d)
...@@ -172,7 +172,7 @@ func TestDone(t *testing.T) { ...@@ -172,7 +172,7 @@ func TestDone(t *testing.T) {
} }
} }
// a helper map for usual services that do not do anyting // a helper map for usual services that do not do anything
var noopServiceFuncMap = map[string]ServiceFunc{ var noopServiceFuncMap = map[string]ServiceFunc{
"noop": noopServiceFunc, "noop": noopServiceFunc,
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment