Skip to content
This repository has been archived by the owner on Dec 31, 2020. It is now read-only.

Commit

Permalink
Updated to react 15.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed Jan 7, 2017
1 parent 1175e34 commit ebedc5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -43,9 +43,9 @@
"jquery": "^2.1.4",
"lodash": "^4.0.1",
"mobx": "^2.7.0 || ^3.0.0",
"react": "^15.2.0",
"react-addons-test-utils": "^15.2.0",
"react-dom": "^15.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"tape-run": "2.1.0",
Expand Down
4 changes: 2 additions & 2 deletions test/inject.js
Expand Up @@ -261,8 +261,8 @@ test('inject based context', t => {
</Provider>
mount(<A />);
t.equal(msg.length, 2);
t.equal(msg[0].split("\n")[0], 'Warning: Failed prop type: Required prop `x` was not specified in `inject-C-with-foo`.');
t.equal(msg[1].split("\n")[0], 'Warning: Failed prop type: Required prop `a` was not specified in `C`.');
t.equal(msg[0].split("\n")[0], 'Warning: Failed prop type: The prop `x` is marked as required in `inject-C-with-foo`, but its value is `undefined`.');
t.equal(msg[1].split("\n")[0], 'Warning: Failed prop type: The prop `a` is marked as required in `C`, but its value is `undefined`.');
console.error = baseError;
t.end();
});
Expand Down

0 comments on commit ebedc5f

Please sign in to comment.