From d4b12c82d9a814d224e8666592a46107ae1e5b8f Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Tue, 22 Apr 2014 18:18:08 -0300 Subject: [PATCH] make PrivateKey tests pass by updating length with new correct length --- test/test.PrivateKey.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.PrivateKey.js b/test/test.PrivateKey.js index f3cec474f..9eafd5794 100644 --- a/test/test.PrivateKey.js +++ b/test/test.PrivateKey.js @@ -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);