diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2015-02-05 14:44:45 +0100 | 
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2015-02-05 14:44:45 +0100 | 
| commit | 0ac3227b7bb27a76b6f49aa1605f1b1887a01a10 (patch) | |
| tree | ab68843e42e06335f71d842eb71f70d89167c0fb /test | |
| parent | 19555bb39ab09f5e5b5dd663136e0105d2b3a625 (diff) | |
| download | mitmproxy-0ac3227b7bb27a76b6f49aa1605f1b1887a01a10.tar.gz mitmproxy-0ac3227b7bb27a76b6f49aa1605f1b1887a01a10.tar.bz2 mitmproxy-0ac3227b7bb27a76b6f49aa1605f1b1887a01a10.zip  | |
clean up flow reading
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_dump.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_dump.py b/test/test_dump.py index 69df912f..11a024e3 100644 --- a/test/test_dump.py +++ b/test/test_dump.py @@ -75,7 +75,7 @@ class TestDumpMaster:      def test_replay(self):          cs = StringIO() -        o = dump.Options(server_replay="nonexistent", kill=True) +        o = dump.Options(server_replay=["nonexistent"], kill=True)          tutils.raises(dump.DumpError, dump.DumpMaster, None, o, outfile=cs)          with tutils.tmpdir() as t:  | 
