Fix test_quteprocess.test_set with QtWebEngine

network -> accept-language is not available for QtWebEngine, and we
simply need a setting which accepts an arbitrary string.
This commit is contained in:
Florian Bruhin 2016-08-19 11:25:59 +02:00
parent 388d771a2e
commit c0c3279424

View File

@ -281,6 +281,6 @@ def test_xpath_escape(string, expected):
'foo"bar', # Make sure a " is preserved 'foo"bar', # Make sure a " is preserved
]) ])
def test_set(quteproc, value): def test_set(quteproc, value):
quteproc.set_setting('network', 'accept-language', value) quteproc.set_setting('general', 'default-encoding', value)
read_back = quteproc.get_setting('network', 'accept-language') read_back = quteproc.get_setting('general', 'default-encoding')
assert read_back == value assert read_back == value