From 2d41385369e59823d973dc984e2f4edf1f21cc9c Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 6 Jan 2015 14:47:39 -0800 Subject: [PATCH] Remove last \t in crypto_test.js --- test/crypto_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/crypto_test.js b/test/crypto_test.js index bb9149d91..e22529470 100644 --- a/test/crypto_test.js +++ b/test/crypto_test.js @@ -78,7 +78,7 @@ describe("Crypto", function() { return textsecure.crypto.HKDF(IKM.buffer, salt.buffer, info.buffer).then(function(OKM){ assertEqualArrayBuffers(OKM[0], T1); assertEqualArrayBuffers(OKM[1].slice(0, 10), T2); - }).then(done).catch(done); + }).then(done).catch(done); }); });