From c74806feacfe4edcf8ae4a06df0ded9e31704374 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 20 Dec 2021 21:06:14 +0100 Subject: [PATCH] fix tests --- test/mitmproxy/io/test_tnetstring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mitmproxy/io/test_tnetstring.py b/test/mitmproxy/io/test_tnetstring.py index 3f5469e5b..ecca5130b 100644 --- a/test/mitmproxy/io/test_tnetstring.py +++ b/test/mitmproxy/io/test_tnetstring.py @@ -122,7 +122,7 @@ class Test_FileLoading(unittest.TestCase): def test_error_on_absurd_lengths(self): s = io.BytesIO() - s.write(b'1000000000:pwned!,') + s.write(b'1000000000000:pwned!,') s.seek(0) with self.assertRaises(ValueError): tnetstring.load(s)