summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Root.js2
-rw-r--r--src/Root.test.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Root.js b/src/Root.js
index 784bee3..95fb168 100644
--- a/src/Root.js
+++ b/src/Root.js
@@ -2,7 +2,7 @@ import React from 'react';
const Root = () => (
<main>
- <p>Hello, big world!</p>
+ <p>Hello, world!</p>
</main>
);
diff --git a/src/Root.test.js b/src/Root.test.js
index 20fafa0..7f785a2 100644
--- a/src/Root.test.js
+++ b/src/Root.test.js
@@ -8,6 +8,6 @@ describe('Root', () => {
test('greeting is shown', () => {
const { container } = render(<Root />);
- expect(container).toHaveTextContent('Hello, big world!');
+ expect(container).toHaveTextContent('Hello, world!');
});
});