diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-09-15 00:25:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-15 00:25:45 -0700 |
commit | 3c934b1a58c721107a6a8172c3d52e8f77cf4920 (patch) | |
tree | 8300b3a3e33044a831f0cbd0a7186d2931f98fec /test | |
parent | 9716b3dab57735099e4c2ac27aebe87b61896087 (diff) | |
parent | 289ddfe9887ce928b19a2f801d5664f1c77a7387 (diff) | |
download | mitmproxy-3c934b1a58c721107a6a8172c3d52e8f77cf4920.tar.gz mitmproxy-3c934b1a58c721107a6a8172c3d52e8f77cf4920.tar.bz2 mitmproxy-3c934b1a58c721107a6a8172c3d52e8f77cf4920.zip |
Merge pull request #2573 from mhils/remove-html-outline
Remove HTML Outline Contentview, fix #2572
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/contentviews/test_html_outline.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/mitmproxy/contentviews/test_html_outline.py b/test/mitmproxy/contentviews/test_html_outline.py deleted file mode 100644 index 9e664e52..00000000 --- a/test/mitmproxy/contentviews/test_html_outline.py +++ /dev/null @@ -1,9 +0,0 @@ -from mitmproxy.contentviews import html_outline -from test.mitmproxy.contentviews import full_eval - - -def test_view_html_outline(): - v = full_eval(html_outline.ViewHTMLOutline()) - s = b"<html><br><br></br><p>one</p></html>" - assert v(s) - assert v(b'\xfe') |