From 507e22cfe9a6b264b74ac4b5007fa17e1c2b65ea Mon Sep 17 00:00:00 2001 From: Cezar Augusto Date: Tue, 14 Mar 2017 14:07:37 -0300 Subject: [PATCH] Fix failling test for tab themeColor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Auditors: @luixxiul Test Plan: Automated test must pass: ✓ Uses the default tab color when one is not specified --- test/components/navigationBarTest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/components/navigationBarTest.js b/test/components/navigationBarTest.js index 10ef433f89..8c4c30d6cb 100644 --- a/test/components/navigationBarTest.js +++ b/test/components/navigationBarTest.js @@ -769,7 +769,7 @@ describe('navigationBar tests', function () { const page1Url = Brave.server.url('page1.html') yield this.app.client.tabByUrl(Brave.newTabUrl).url(page1Url).waitForUrl(page1Url).windowParentByUrl(page1Url) let background = yield this.app.client.getCssProperty('[data-test-active-tab]', 'background') - assert.equal(background.value, 'rgba(0,0,0,0)linear-gradient(rgb(255,255,255),rgb(243,243,243))repeatscroll0%0%/autopadding-boxborder-box') + assert.equal(background.value, 'rgb(255,255,255)nonerepeatscroll0%0%/autopadding-boxborder-box') }) // We need a newer electron build first