diff options
Diffstat (limited to 'nacl/box/box_test.go')
| -rw-r--r-- | nacl/box/box_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nacl/box/box_test.go b/nacl/box/box_test.go index cce1f3b..4049257 100644 --- a/nacl/box/box_test.go +++ b/nacl/box/box_test.go @@ -114,7 +114,7 @@ func TestSealOpenAnonymous(t *testing.T) { t.Fatal("expected out to be unchanged") } if !bytes.HasPrefix(box, orig) { - t.Fatal("expected out to be coppied to returned slice") + t.Fatal("expected out to be copied to returned slice") } _, ok = OpenAnonymous(nil, box[len(out):], publicKey, privateKey) if !ok { |
