From 866de1278f8600e01080790d2e720f3ea862304e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 18 Apr 2018 00:25:16 -0400 Subject: [PATCH] remove 256 from expectation --- src/services/webCryptoFunction.service.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/webCryptoFunction.service.spec.ts b/src/services/webCryptoFunction.service.spec.ts index c5c9f70e912..68a8a560904 100644 --- a/src/services/webCryptoFunction.service.spec.ts +++ b/src/services/webCryptoFunction.service.spec.ts @@ -67,7 +67,7 @@ describe('WebCrypto Function Service', () => { }); describe('aesEncrypt', () => { - it('should successfully aes 256 encrypt data', async () => { + it('should successfully aes encrypt data', async () => { const webCryptoFunctionService = getWebCryptoFunctionService(); const iv = makeStaticByteArray(16); const key = makeStaticByteArray(32); @@ -78,7 +78,7 @@ describe('WebCrypto Function Service', () => { }); describe('aesDecryptSmall', () => { - it('should successfully aes 256 decrypt data', async () => { + it('should successfully aes decrypt data', async () => { const webCryptoFunctionService = getWebCryptoFunctionService(); const iv = makeStaticByteArray(16); const key = makeStaticByteArray(32); @@ -89,7 +89,7 @@ describe('WebCrypto Function Service', () => { }); describe('aesDecryptLarge', () => { - it('should successfully aes 256 decrypt data', async () => { + it('should successfully aes decrypt data', async () => { const webCryptoFunctionService = getWebCryptoFunctionService(); const iv = makeStaticByteArray(16); const key = makeStaticByteArray(32);