Bug 1273842 Unskip test_about_private browsing.py for e10s mode draft
authorJMortelliti <jacob.harrowmortelliti@maine.edu>
Thu, 19 May 2016 21:08:44 -0400
changeset 369001 95217b5590ff52c2e9fad5b07ccee7f44187c6e1
parent 367171 4a8ed77f6bb573f20980056bf8c1dadd125c1a85
child 521422 7f8853cc3ca3221131c529ae3a1dfc89c8e256a7
push id18693
push userbmo:jacob.harrowmortelliti@maine.edu
push dateFri, 20 May 2016 01:10:46 +0000
bugs1273842
milestone49.0a1
Bug 1273842 Unskip test_about_private browsing.py for e10s mode MozReview-Commit-ID: Cbc7IvJniSJ
testing/firefox-ui/tests/functional/private_browsing/test_about_private_browsing.py
--- a/testing/firefox-ui/tests/functional/private_browsing/test_about_private_browsing.py
+++ b/testing/firefox-ui/tests/functional/private_browsing/test_about_private_browsing.py
@@ -1,14 +1,13 @@
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 from marionette_driver import By, Wait
-from marionette.marionette_test import skip_if_e10s
 
 from firefox_ui_harness.testcases import FirefoxTestCase
 
 from firefox_puppeteer.ui.browser.window import BrowserWindow
 
 
 class TestAboutPrivateBrowsing(FirefoxTestCase):
 
@@ -16,17 +15,16 @@ class TestAboutPrivateBrowsing(FirefoxTe
         FirefoxTestCase.setUp(self)
 
         # Use a fake local support URL
         support_url = 'about:blank?'
         self.prefs.set_pref('app.support.baseURL', support_url)
 
         self.pb_url = support_url + 'private-browsing'
 
-    @skip_if_e10s
     def testCheckAboutPrivateBrowsing(self):
         self.assertFalse(self.browser.is_private)
 
         with self.marionette.using_context('content'):
             self.marionette.navigate('about:privatebrowsing')
 
             status_node = self.marionette.find_element(By.CSS_SELECTOR, 'p.showNormal')
             self.assertEqual(status_node.text,