From 577fb818b9491fc13ed11a2dee206c9294a5daff Mon Sep 17 00:00:00 2001 From: lymanZerga11 Date: Mon, 13 Feb 2017 10:39:48 +0800 Subject: Update test_flowlist.py --- test/mitmproxy/console/test_flowlist.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/mitmproxy/console/test_flowlist.py b/test/mitmproxy/console/test_flowlist.py index 0f41fb42..1e1fadca 100644 --- a/test/mitmproxy/console/test_flowlist.py +++ b/test/mitmproxy/console/test_flowlist.py @@ -7,12 +7,12 @@ import pytest from unittest import mock -class ScriptError(Exception): +class UrlError(Exception): pass def mock_add_log(message): - raise ScriptError(message) + raise UrlError(message) class TestFlowlist(tservers.MasterTest): @@ -26,6 +26,6 @@ class TestFlowlist(tservers.MasterTest): def test_new_request(self, test_func): m = self.mkmaster() x = flowlist.FlowListBox(m) - with pytest.raises(ScriptError) as e: + with pytest.raises(UrlError) as e: x.new_request("nonexistent url", "GET") assert "Invalid URL" in str(e) -- cgit v1.2.3