diff options
author | Chris Czub <chris.czub@gmail.com> | 2015-11-06 11:18:48 -0500 |
---|---|---|
committer | Chris Czub <chris.czub@gmail.com> | 2015-11-06 11:18:48 -0500 |
commit | b0648ee8a64a0ee5a1a605c216d3a88e6e72f083 (patch) | |
tree | e62217ee7022649f89ca84234eb57fb121141d9d /test | |
parent | 9beae933ba02fbd2c2a4f3cb9af48499d64db269 (diff) | |
download | mitmproxy-b0648ee8a64a0ee5a1a605c216d3a88e6e72f083.tar.gz mitmproxy-b0648ee8a64a0ee5a1a605c216d3a88e6e72f083.tar.bz2 mitmproxy-b0648ee8a64a0ee5a1a605c216d3a88e6e72f083.zip |
Fix failing protobuf contentview test
Diffstat (limited to 'test')
-rw-r--r-- | test/test_contentview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_contentview.py b/test/test_contentview.py index 97608520..14adcd83 100644 --- a/test/test_contentview.py +++ b/test/test_contentview.py @@ -233,7 +233,7 @@ if cv.ViewProtobuf.is_available(): p = tutils.test_data.path("data/protobuf01") content_type, output = v(file(p, "rb").read()) assert content_type == "Protobuf" - assert output[0].text == '1: "3bbc333c-e61c-433b-819a-0b9a8cc103b8"' + assert output.next()[0][1] == '1: "3bbc333c-e61c-433b-819a-0b9a8cc103b8"' def test_get_by_shortcut(): |