Skip to content

Commit

Permalink
correct test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ni55aN committed Jul 18, 2018
1 parent a05106d commit 9df4fb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('Editor', () => {
}

builder(node) {
node.addOutput(new Rete.Output('Name', socketNum))
node.addOutput(new Rete.Output('name', 'Name', socketNum))
}

worker() { }
Expand All @@ -48,7 +48,7 @@ describe('Editor', () => {
}

builder(node) {
node.addInput(new Rete.Input('Name', socketNum));
node.addInput(new Rete.Input('name', 'Name', socketNum));
}

worker() { }
Expand Down

0 comments on commit 9df4fb9

Please sign in to comment.