Skip to content

Commit

Permalink
Fix existing assertion for Navbar componentClass
Browse files Browse the repository at this point in the history
  • Loading branch information
lo1tuma committed Jun 23, 2015
1 parent 1bc3253 commit daa21f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/NavbarSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe('Nav', function () {
let instance = ReactTestUtils.renderIntoDocument(
<Navbar componentClass={'header'}/>
);
assert.ok(React.findDOMNode(instance).nodeName, 'HEADER');
assert.equal(React.findDOMNode(instance).nodeName, 'HEADER');
});

it('Should add header with brand', function () {
Expand Down

0 comments on commit daa21f2

Please sign in to comment.