fix linting for grunt

This commit is contained in:
Dave Conway-Jones
2021-03-12 09:36:20 +00:00
parent c4a32cdb58
commit f7be874e2c
3 changed files with 9 additions and 7 deletions

View File

@@ -99,7 +99,7 @@ describe('RPI GPIO Node', function() {
var n2 = helper.getNode("n2");
n2.on("input", function(msg) {
try {
msg.should.have.property('topic', 'pi/7');
msg.should.have.property('topic', 'gpio/7');
msg.should.have.property('payload', 1);
done();
} catch(err) {
@@ -117,7 +117,7 @@ describe('RPI GPIO Node', function() {
var n2 = helper.getNode("n2");
n2.on("input", function(msg) {
try {
msg.should.have.property('topic', 'pi/11');
msg.should.have.property('topic', 'gpio/11');
msg.should.have.property('payload', 0);
done();
} catch(err) {