This repository was archived by the owner on Aug 5, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Create - Resource (Direct) Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ function getResources( device ) {
55
55
56
56
// Perform the create() method on a device if it's the right device
57
57
function tryDevice ( device ) {
58
- if ( ! device . name = == "test-device-" + process . argv [ 2 ] ) {
58
+ if ( device . name ! == "test-device-" + process . argv [ 2 ] ) {
59
59
return ;
60
60
}
61
61
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ function getResources( device ) {
57
57
58
58
// Perform the create() method on a device if it's the right device
59
59
function tryDevice ( device ) {
60
- if ( ! device . name = == "test-device-" + process . argv [ 2 ] ) {
60
+ if ( device . name ! == "test-device-" + process . argv [ 2 ] ) {
61
61
return ;
62
62
}
63
63
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ console.log( JSON.stringify( { assertionCount: 1 } ) );
18
18
19
19
// Perform the create() method on a device if it's the right device
20
20
function tryDevice ( device ) {
21
- if ( ! device . name = == "test-device-" + process . argv [ 2 ] ) {
21
+ if ( device . name ! == "test-device-" + process . argv [ 2 ] ) {
22
22
return ;
23
23
}
24
24
You can’t perform that action at this time.
0 commit comments