Skip to content

Commit d7b6c55

Browse files
committed
Fix tests
1 parent 0c55ac8 commit d7b6c55

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/plot/components/svg/rug/test

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/plot/components/svg/rug/test/test.color.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ tape( 'an instance supports setting and getting the property value (string)', fu
5858
'autoRender': false,
5959
'color': '#abc'
6060
});
61-
t.strictEqual( node.color, 'abc', 'returns expected value' );
61+
t.strictEqual( node.color(), '#abc', 'returns expected value' );
6262

6363
node.color = '#cba';
64-
t.strictEqual( node.color, '#cba', 'returns expected value' );
64+
t.strictEqual( node.color(), '#cba', 'returns expected value' );
6565

6666
t.end();
6767
});

0 commit comments

Comments
 (0)