diff options
Diffstat (limited to 'crypt_test.go')
-rw-r--r-- | crypt_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypt_test.go b/crypt_test.go index 45e8815..80f6cc4 100644 --- a/crypt_test.go +++ b/crypt_test.go @@ -34,7 +34,7 @@ func TestEncryptionMechanism(t *testing.T) { } func TestHashing(t *testing.T) { - assert.Equal(t, hashing("unsupportedHashAlgorithm", []byte{}), []uint8([]byte(nil))) + assert.Equal(t, hashing("unsupportedHashAlgorithm", []byte{}), []byte(nil)) } func TestGenISOPasswdHash(t *testing.T) { |