Version bump scodec and specs2

Also fix assorted casting errors and improve test case readability
This commit is contained in:
Chord 2016-06-03 21:47:45 -04:00
parent 372a88bb6e
commit 50fb65ac57
6 changed files with 38 additions and 39 deletions

View file

@ -102,7 +102,7 @@ class CryptoInterfaceTest extends Specification {
hex"b4aea1559444a20b6112a2892de40eac00000000c8aea155b53d187076b79abab59001b600000000"
val expected = hex"5aa15de41f5220cf5cca489155e1438c5aa15de4"
val output = CryptoInterface.MD5MAC(key, message, expected.length)
val output = CryptoInterface.MD5MAC(key, message, expected.length.toInt)
output mustEqual expected
}