Skip to content

Commit 01139cc

Browse files
committed
Attempt to fix failing unit test
Replace wrong this.functionName with this.function_name
1 parent 9b28775 commit 01139cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ActorAccessory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ActorAccessory extends Accessory {
4848

4949
setState(value, callback) {
5050
this.value = value;
51-
this.callParticleFunction(this.functionName, value, (error, response, body) => this.callbackHelper(error, response, body, callback), true);
51+
this.callParticleFunction(this.function_name, value, (error, response, body) => this.callbackHelper(error, response, body, callback), true);
5252
}
5353

5454
callbackHelper(error, response, body, callback) {

0 commit comments

Comments
 (0)