Skip to content

Commit

Permalink
Fix node type name
Browse files Browse the repository at this point in the history
  • Loading branch information
Daisuke Baba committed Apr 5, 2018
1 parent c7c8b1e commit 36369ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/smartmesh.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('smartmesh node', () => {
it('should have valid Node-RED plugin classes', () => {
assert.isNotNull(RED);
smartmeshModule(RED);
assert.isTrue(RED.nodes.registerType.withArgs('SmartMesh', sinon.match.any).calledOnce);
assert.isTrue(RED.nodes.registerType.withArgs('SmartMesh manager', sinon.match.any).calledOnce);
assert.isTrue(RED.nodes.registerType.withArgs('SmartMesh in', sinon.match.any).calledOnce);
assert.isTrue(RED.nodes.registerType.withArgs('SmartMesh out', sinon.match.any).calledOnce);
});
Expand Down

0 comments on commit 36369ed

Please sign in to comment.