diff --git a/compiler/ssa/bindings_test.go b/compiler/ssa/bindings_test.go index 95130a24..d5201aa5 100644 --- a/compiler/ssa/bindings_test.go +++ b/compiler/ssa/bindings_test.go @@ -1,5 +1,5 @@ // -// Copyright (c) 2020-2022 Markku Rossi +// Copyright (c) 2020-2023 Markku Rossi // // All rights reserved. // @@ -95,7 +95,7 @@ func TestMerge(t *testing.T) { } _, ok = bound.Bound.(*Value) if !ok { - t.Errorf("bindinf for value 'b' is not *Value: %T", bound.Bound) + t.Errorf("binding for value 'b' is not *Value: %T", bound.Bound) } bound, ok = merged.Get("a") if !ok { @@ -104,7 +104,7 @@ func TestMerge(t *testing.T) { fmt.Printf("merged.a: %v (%T)\n", bound, bound) _, ok = bound.Bound.(*Select) if !ok { - t.Errorf("bindinf for value 'a' is not *Select: %T", bound.Bound) + t.Errorf("binding for value 'a' is not *Select: %T", bound.Bound) } } diff --git a/ot/pipe_test.go b/ot/pipe_test.go index 358f7fd1..a635f917 100644 --- a/ot/pipe_test.go +++ b/ot/pipe_test.go @@ -63,7 +63,7 @@ func TestPipe(t *testing.T) { } err = pipe.Close() if err != nil { - t.Errorf("Close faield: %v", err) + t.Errorf("Close failed: %v", err) } err = <-done