diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-04-03 09:52:26 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-04-03 09:52:26 +1200 |
commit | f526e5fa125339e8f3a16c1590c1607f45862b47 (patch) | |
tree | 041f77932eb145775d69369869d0a8e012415b1c /test/test_console.py | |
parent | 4979a22d3e1e62786394b0038842ff9e20554619 (diff) | |
download | mitmproxy-f526e5fa125339e8f3a16c1590c1607f45862b47.tar.gz mitmproxy-f526e5fa125339e8f3a16c1590c1607f45862b47.tar.bz2 mitmproxy-f526e5fa125339e8f3a16c1590c1607f45862b47.zip |
Minor unit test bump.
Diffstat (limited to 'test/test_console.py')
-rw-r--r-- | test/test_console.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_console.py b/test/test_console.py index 4ed65a16..a570f3e5 100644 --- a/test/test_console.py +++ b/test/test_console.py @@ -113,7 +113,8 @@ class uPathCompleter(libpry.AutoTree): c.reset() assert c.complete("./completion/aaa") == "./completion/aaa" assert c.complete("./completion/aaa") == "./completion/aaa" - + c.reset() + assert c.complete("./completion") == "./completion/aaa" def test_completion(self): c = console._PathCompleter(True) |