aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathod/test_test.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2016-11-02 11:15:27 +1300
committerGitHub <noreply@github.com>2016-11-02 11:15:27 +1300
commit490872ebefd87e9a55f2db3dd18c0fbb58dbf206 (patch)
tree6fb39667fc63f620cc0e41838ca477b95beb5ad3 /test/pathod/test_test.py
parentba09b8bff34869c3355e955d43e8e58e349a15ad (diff)
parent59b269425f76258a5a68909ba7509597a7d74b3c (diff)
downloadmitmproxy-490872ebefd87e9a55f2db3dd18c0fbb58dbf206.tar.gz
mitmproxy-490872ebefd87e9a55f2db3dd18c0fbb58dbf206.tar.bz2
mitmproxy-490872ebefd87e9a55f2db3dd18c0fbb58dbf206.zip
Merge pull request #1701 from cortesi/addontest2
Test suite cleanups
Diffstat (limited to 'test/pathod/test_test.py')
-rw-r--r--test/pathod/test_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/pathod/test_test.py b/test/pathod/test_test.py
index d69e72f3..c2e1c6e9 100644
--- a/test/pathod/test_test.py
+++ b/test/pathod/test_test.py
@@ -2,7 +2,7 @@ import logging
import requests
from pathod import test
-from . import tutils
+from mitmproxy.test import tutils
import requests.packages.urllib3
@@ -34,8 +34,8 @@ class TestDaemonManual:
def test_startstop_ssl_explicit(self):
ssloptions = dict(
- certfile=tutils.test_data.path("data/testkey.pem"),
- cacert=tutils.test_data.path("data/testkey.pem"),
+ certfile=tutils.test_data.path("pathod/data/testkey.pem"),
+ cacert=tutils.test_data.path("pathod/data/testkey.pem"),
ssl_after_connect=False
)
d = test.Daemon(ssl=ssloptions)