Skip to content

Commit

Permalink
Fixed xxtea_test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
andot committed Feb 16, 2016
1 parent a81bac2 commit e2ce115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/xxtea_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('XXTEA', function(){
var key = "1234567890";
var encrypt_data = "D4t0rVXUDl3bnWdERhqJmFIanfn/6zAxAY9jD6n9MSMQNoD8TOS4rHHcGuE=";
var decrypt_data = XXTEA.decryptFromBase64(encrypt_data, key);
console.assert(str === decrypt_data);
assert(str === decrypt_data);
})
})
})

0 comments on commit e2ce115

Please sign in to comment.