diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-03-05 17:25:12 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-03-05 17:28:04 +1300 |
commit | d65f2215cb9191a24b36ad6a4fcbf474798d3b2d (patch) | |
tree | ce2c0a84fa3e011abcd521a85b507d9bc62fd198 /test/test_console_contentview.py | |
parent | 32af66881465ae98a53665c8ddd42c02aaf492f7 (diff) | |
download | mitmproxy-d65f2215cb9191a24b36ad6a4fcbf474798d3b2d.tar.gz mitmproxy-d65f2215cb9191a24b36ad6a4fcbf474798d3b2d.tar.bz2 mitmproxy-d65f2215cb9191a24b36ad6a4fcbf474798d3b2d.zip |
Much more sophisticated cert handling
- Specify per-domain certificates and keys
- Certs are no longer regenerated for SANs
- And more. :)
Diffstat (limited to 'test/test_console_contentview.py')
-rw-r--r-- | test/test_console_contentview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_console_contentview.py b/test/test_console_contentview.py index a878ad4e..0aabd2c5 100644 --- a/test/test_console_contentview.py +++ b/test/test_console_contentview.py @@ -120,7 +120,7 @@ class TestContentView: def test_view_css(self): v = cv.ViewCSS() - with open('./test/data/1.css', 'r') as fp: + with open(tutils.test_data.path('data/1.css'), 'r') as fp: fixture_1 = fp.read() result = v([], 'a', 100) |