Skip to content

Commit

Permalink
Update test.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Dec 21, 2017
1 parent 4d1482e commit 78d0924
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ exports[`EuiErrorBoundary is rendered with an error 1`] = `
</h1>
<pre>
<p>
Error: Terrible error!
Error: I'm here to kick butt and chew bubblegum.
And I'm all out of gum.
</p>
</pre>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/error_boundary/error_boundary.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const GoodComponent = () => (
);

const BadComponent = () => {
throw new Error('Terrible error!');
throw new Error('I\'m here to kick butt and chew bubblegum.\n\n\And I\'m all out of gum.');
};

describe('EuiErrorBoundary', () => {
Expand Down

0 comments on commit 78d0924

Please sign in to comment.