From fd0dddad40d380d913b5599ae1afaa806566584d Mon Sep 17 00:00:00 2001 From: Matt Brandt Date: Mon, 8 Aug 2016 11:36:52 -0600 Subject: [PATCH] remove xfail for resolved seamonkey bugs --- tests/test_crash_reports.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_crash_reports.py b/tests/test_crash_reports.py index d4aef05..d622349 100644 --- a/tests/test_crash_reports.py +++ b/tests/test_crash_reports.py @@ -19,7 +19,7 @@ class TestCrashReports: @pytest.mark.parametrize(('product'), [ 'Firefox', pytest.mark.xfail(reason='bug 1293296')('Thunderbird'), - pytest.mark.xfail(reason='bug 1273175')('SeaMonkey'), + 'SeaMonkey', 'FennecAndroid']) def test_that_reports_form_has_same_product(self, base_url, selenium, product): csp = CrashStatsHomePage(selenium, base_url).open() @@ -34,7 +34,7 @@ def test_that_reports_form_has_same_product(self, base_url, selenium, product): @pytest.mark.parametrize(('product'), [ 'Firefox', pytest.mark.xfail(reason='bug 1293296')('Thunderbird'), - pytest.mark.xfail(reason='bug 1273182')('SeaMonkey'), + 'SeaMonkey', 'FennecAndroid']) def test_that_current_version_selected_in_top_crashers_header(self, base_url, selenium, product): csp = CrashStatsHomePage(selenium, base_url).open()