diff options
| author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 18:12:11 +0200 |
|---|---|---|
| committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 18:15:22 +0200 |
| commit | 7a3623a14ee2ffa021c1a2a8f337826e055b328d (patch) | |
| tree | 7abdfdba135ea1f6022a8a72b1c52371f76fbea2 /test/test_language_actions.py | |
| parent | 90aeda47aead50110ee4a0a29b01edd170539818 (diff) | |
| download | mitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.tar.gz mitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.tar.bz2 mitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.zip | |
fix pep8 whitespace
Diffstat (limited to 'test/test_language_actions.py')
| -rw-r--r-- | test/test_language_actions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_language_actions.py b/test/test_language_actions.py index 9f36805f..755f0d85 100644 --- a/test/test_language_actions.py +++ b/test/test_language_actions.py @@ -14,6 +14,7 @@ def test_unique_name(): class TestDisconnects: + def test_parse_pathod(self): a = language.parse_pathod("400:d0").next().actions[0] assert a.spec() == "d0" @@ -39,6 +40,7 @@ class TestDisconnects: class TestInject: + def test_parse_pathod(self): a = language.parse_pathod("400:ir,@100").next().actions[0] assert a.offset == "r" @@ -77,6 +79,7 @@ class TestInject: class TestPauses: + def test_parse_pathod(self): e = actions.PauseAt.expr() v = e.parseString("p10,10")[0] @@ -107,6 +110,7 @@ class TestPauses: class Test_Action: + def test_cmp(self): a = actions.DisconnectAt(0) b = actions.DisconnectAt(1) |
