From 78d0924495680d031bcabc44bcaf73af4ba9f56e Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Wed, 20 Dec 2017 22:08:36 -0800 Subject: [PATCH] Update test. --- .../error_boundary/__snapshots__/error_boundary.test.js.snap | 4 +++- src/components/error_boundary/error_boundary.test.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/error_boundary/__snapshots__/error_boundary.test.js.snap b/src/components/error_boundary/__snapshots__/error_boundary.test.js.snap index 5115bd4559b..5124b9ba82a 100644 --- a/src/components/error_boundary/__snapshots__/error_boundary.test.js.snap +++ b/src/components/error_boundary/__snapshots__/error_boundary.test.js.snap @@ -17,7 +17,9 @@ exports[`EuiErrorBoundary is rendered with an error 1`] = `
         

- Error: Terrible error! + Error: I'm here to kick butt and chew bubblegum. + +And I'm all out of gum.

diff --git a/src/components/error_boundary/error_boundary.test.js b/src/components/error_boundary/error_boundary.test.js index 989e0ccfc11..8ece71c12e7 100644 --- a/src/components/error_boundary/error_boundary.test.js +++ b/src/components/error_boundary/error_boundary.test.js @@ -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', () => {