Explorar el Código

Fix broken test

Marcin Krzyżanowski hace 7 años
padre
commit
3688310705
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Tests/CryptoSwiftTests/Access.swift

+ 1 - 1
Tests/CryptoSwiftTests/Access.swift

@@ -209,7 +209,7 @@ class Access: XCTestCase {
             let enc = try cipher.encrypt([1, 2, 3])
             _ = try cipher.decrypt(enc)
 
-            _ = try Blowfish(key: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6], iv: [1, 2, 3, 4, 5, 6, 7, 8], padding: .noPadding)
+            _ = try Blowfish(key: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6], padding: .noPadding)
 
             _ = Blowfish.blockSize
         } catch {