From 58d5b81c997b52419a1b8b716803caac3e4cb6af Mon Sep 17 00:00:00 2001 From: Naoya Horiguchi Date: Tue, 25 Sep 2018 17:52:17 +0900 Subject: [PATCH] [FABN-933] fix filename typo The filename fabric-client/test/Contants.js seems to have a typo, probably expected to be fabric-client/test/Constants.js. So let's fix it to improve code quality. Change-Id: I44fe4b9e79beed6f4173fe045a5a381330c0238b Signed-off-by: Naoya Horiguchi --- fabric-client/test/{Contants.js => Constants.js} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename fabric-client/test/{Contants.js => Constants.js} (99%) diff --git a/fabric-client/test/Contants.js b/fabric-client/test/Constants.js similarity index 99% rename from fabric-client/test/Contants.js rename to fabric-client/test/Constants.js index a1ff2c163a..a3f0e8ca82 100644 --- a/fabric-client/test/Contants.js +++ b/fabric-client/test/Constants.js @@ -33,7 +33,7 @@ describe('Constants', () => { Constants.SYSTEM_CHANNEL_NAME.should.equal('testchainid'); }); - it('should set the correct NetworkConfig.ENDORSING_PEER_ROLE contant', () => { + it('should set the correct NetworkConfig.ENDORSING_PEER_ROLE constant', () => { Constants.NetworkConfig.ENDORSING_PEER_ROLE.should.equal('endorsingPeer'); });