Skip to content

Commit

Permalink
test: Minor change at test
Browse files Browse the repository at this point in the history
  • Loading branch information
finom committed Nov 10, 2016
1 parent 8e3e41e commit b87e9ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/spec/bindings/binders_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ describe('Binders', () => {
bindNode(obj, 'x', node, style('background', url => `url("${url}")`), noDebounceFlag);
expect(obj.x).toEqual('red');
obj.x = 'cats.jpg';
expect(node.style.background).toEqual('url("cats.jpg")');
expect(node.style.background.replace('"', '')).toEqual('url(cats.jpg)');
});

it('should bind dataset', () => {
Expand Down

0 comments on commit b87e9ad

Please sign in to comment.