Remove last \t in crypto_test.js

This commit is contained in:
Matt Corallo 2015-01-06 14:47:39 -08:00
parent 7ebf0f5085
commit 2d41385369
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});
});