aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mascara/test/lib/first-time.js2
-rw-r--r--test/integration/lib/first-time.js2
-rw-r--r--ui/app/components/notice.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/mascara/test/lib/first-time.js b/mascara/test/lib/first-time.js
index 8e33c8a06..76a4545bf 100644
--- a/mascara/test/lib/first-time.js
+++ b/mascara/test/lib/first-time.js
@@ -10,7 +10,7 @@ QUnit.test('render init screen', function (assert) {
app = $('#app-content').contents()
const recurseNotices = function () {
let button = app.find('button')
- if (button.html() === 'Continue') {
+ if (button.html() === 'Agree') {
let termsPage = app.find('.markdown')[0]
termsPage.scrollTop = termsPage.scrollHeight
return wait().then(() => {
diff --git a/test/integration/lib/first-time.js b/test/integration/lib/first-time.js
index dbb88a3da..f0fa4ee3f 100644
--- a/test/integration/lib/first-time.js
+++ b/test/integration/lib/first-time.js
@@ -11,7 +11,7 @@ QUnit.test('render init screen', function (assert) {
const recurseNotices = function () {
let button = app.find('button')
- if (button.html() === 'Continue') {
+ if (button.html() === 'Agree') {
let termsPage = app.find('.markdown')[0]
termsPage.scrollTop = termsPage.scrollHeight
return wait().then(() => {
diff --git a/ui/app/components/notice.js b/ui/app/components/notice.js
index 3c8523daf..7fe41fa88 100644
--- a/ui/app/components/notice.js
+++ b/ui/app/components/notice.js
@@ -107,7 +107,7 @@ Notice.prototype.render = function () {
style: {
marginTop: '18px',
},
- }, 'Continue'),
+ }, 'Agree'),
])
)
}