aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_language.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-10-29 10:00:41 +1300
committerAldo Cortesi <aldo@nullcube.com>2012-10-29 10:19:58 +1300
commit882969086cf3e1277360bcd49588592f99c575bf (patch)
treead97343c93a1b453f0ae7790a49074261036f8b1 /test/test_language.py
parent61f8992fbffac936ac058b64ed7ac00f21127df9 (diff)
downloadmitmproxy-882969086cf3e1277360bcd49588592f99c575bf.tar.gz
mitmproxy-882969086cf3e1277360bcd49588592f99c575bf.tar.bz2
mitmproxy-882969086cf3e1277360bcd49588592f99c575bf.zip
Cleaup, some more ABCs.
Diffstat (limited to 'test/test_language.py')
-rw-r--r--test/test_language.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_language.py b/test/test_language.py
index 0d3f2685..cb7d7d1b 100644
--- a/test/test_language.py
+++ b/test/test_language.py
@@ -211,9 +211,9 @@ class TestMisc:
class Test_Action:
def test_cmp(self):
- a = language._Action(0)
- b = language._Action(1)
- c = language._Action(0)
+ a = language.DisconnectAt(0)
+ b = language.DisconnectAt(1)
+ c = language.DisconnectAt(0)
assert a < b
assert a == c
l = [b, a]