From a249d8d4261d9dc4f7b2157ae760276b324a3341 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 20 Jan 2016 08:06:36 +0100 Subject: [PATCH] tests: Ignore another Qt warning by hypothesis. --- tests/unit/browser/test_webelem.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/unit/browser/test_webelem.py b/tests/unit/browser/test_webelem.py index 0b008b626..933f74ba4 100644 --- a/tests/unit/browser/test_webelem.py +++ b/tests/unit/browser/test_webelem.py @@ -650,7 +650,9 @@ class TestJavascriptEscape: """Test javascript escaping with a real QWebPage.""" self._test_escape(text, qtbot, webframe) - @pytest.mark.qt_log_ignore('^load glyph failed', extend=True) + @pytest.mark.qt_log_ignore('^load glyph failed', + '^OpenType support missing for script', + extend=True) @hypothesis.given(hypothesis.strategies.text()) def test_real_escape_hypothesis(self, webframe, qtbot, text): """Test javascript escaping with a real QWebPage and hypothesis."""