From 76e8136b45023b7d0490da88f47353a86258a807 Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Sun, 24 Aug 2014 14:29:35 -0700 Subject: [PATCH] prefix static methods with @ in tests ...instance methods prefixed with # --- test/test.base58.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.base58.js b/test/test.base58.js index d05b944..236f5d0 100644 --- a/test/test.base58.js +++ b/test/test.base58.js @@ -15,7 +15,7 @@ describe('Base58', function() { should.exist(b58); }); - describe('#encode', function() { + describe('@encode', function() { it('should encode the buffer accurately', function() { Base58.encode(buf).should.equal(enc); @@ -29,7 +29,7 @@ describe('Base58', function() { }); - describe('#decode', function() { + describe('@decode', function() { it('should decode this encoded value correctly', function() { Base58.decode(enc).toString('hex').should.equal(buf.toString('hex'));