make PrivateKey tests pass by updating length with new correct length

This commit is contained in:
Ryan X. Charles 2014-04-22 18:18:08 -03:00
parent 0b09e13d2b
commit d4b12c82d9
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ describe('PrivateKey model', function() {
it('should calculate .id', function () {
var w1 = new PrivateKey(config);
should.exist(w1.getId());
w1.getId().length.should.equal(40);
w1.getId().length.should.equal(32);
});
it('fromObj toObj roundtrip', function () {
var w1 = new PrivateKey(config);