summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Dolgov <ivan@dolgov.fi>2018-09-26 17:27:30 +0300
committerIvan Dolgov <ivan@dolgov.fi>2018-09-26 17:27:30 +0300
commit597357bdd1f161d9bb34ef30350b7de52085e285 (patch)
tree176333ebef1b58b82cb4a17a3f7bd571455c4c7f
parentf5f8df69470369374ff2d39ecb4f2f8029edd0a4 (diff)
downloadickui-master.tar.gz
Test CI againHEADmaster
-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!');
});
});