diff options
author | Matt Silverlock <matt@eatsleeprepeat.net> | 2015-05-16 20:53:12 +0300 |
---|---|---|
committer | Matt Silverlock <matt@eatsleeprepeat.net> | 2015-05-16 20:53:12 +0300 |
commit | 9ff68c4826a21622892b1c2149900f85e856c9be (patch) | |
tree | 8f3d874423dd19b59fa51e0fde15473e565fa6b8 | |
parent | 978e3ebadae78bf30fec1524c0a264e1b8190d2e (diff) |
Fixed typo - TestEncription => TestEncryption
-rw-r--r-- | securecookie_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/securecookie_test.go b/securecookie_test.go index 9daa3b7..8b984ee 100644 --- a/securecookie_test.go +++ b/securecookie_test.go @@ -101,7 +101,7 @@ func TestAuthentication(t *testing.T) { } } -func TestEncription(t *testing.T) { +func TestEncryption(t *testing.T) { block, err := aes.NewCipher([]byte("1234567890123456")) if err != nil { t.Fatalf("Block could not be created") |