aboutsummaryrefslogtreecommitdiff
path: root/internal/cryptocore/cryptocore_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-05-04 22:10:06 +0200
committerJakob Unterwurzacher2016-05-05 00:09:08 +0200
commit66156181ee656a3c96175edb3bf3c5904102786a (patch)
treeeb53b6e0c69694a3adb9b73f4874fd8000d77101 /internal/cryptocore/cryptocore_test.go
parent508a949d9d07c8efb8ed838c2f7747341a917099 (diff)
cryptocore: support Go 1.4 in tests
Diffstat (limited to 'internal/cryptocore/cryptocore_test.go')
-rw-r--r--internal/cryptocore/cryptocore_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/cryptocore/cryptocore_test.go b/internal/cryptocore/cryptocore_test.go
index fd6a300..1151591 100644
--- a/internal/cryptocore/cryptocore_test.go
+++ b/internal/cryptocore/cryptocore_test.go
@@ -16,10 +16,11 @@ func TestCryptoCoreNew(t *testing.T) {
if c.IVLen != 12 {
t.Fail()
}
- c = New(key, false, true)
- if c.IVLen != 16 {
+ c = New(key, false, false)
+ if c.IVLen != 12 {
t.Fail()
}
+ // "New(key, false, true)" is tested for Go 1.4 and 1.5+ seperately
}
// "New" should panic on any key not 32 bytes long