Use OSError instead of IOError.
This commit is contained in:
parent
19b7f779ef
commit
50bca33618
@ -47,7 +47,7 @@ class TestJavascriptHandler:
|
|||||||
for filename, content in self.js_files:
|
for filename, content in self.js_files:
|
||||||
if path == os.path.join('javascript', filename):
|
if path == os.path.join('javascript', filename):
|
||||||
return content
|
return content
|
||||||
raise IOError("File not found {}!".format(path))
|
raise OSError("File not found {}!".format(path))
|
||||||
|
|
||||||
monkeypatch.setattr('qutebrowser.utils.utils.read_file', _read_file)
|
monkeypatch.setattr('qutebrowser.utils.utils.read_file', _read_file)
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ class TestJavascriptHandler:
|
|||||||
def test_qutejavascript_error(self):
|
def test_qutejavascript_error(self):
|
||||||
url = QUrl("qute://javascript/404.js")
|
url = QUrl("qute://javascript/404.js")
|
||||||
|
|
||||||
with pytest.raises(IOError):
|
with pytest.raises(OSError):
|
||||||
qutescheme.qute_javascript(url)
|
qutescheme.qute_javascript(url)
|
||||||
|
|
||||||
def test_qutejavascript_empty_query(self):
|
def test_qutejavascript_empty_query(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user