From e608d10f455550b8afd09217f0ecf344a0bdc814 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sun, 3 Mar 2013 12:26:20 +1300 Subject: Remove __slots__ to make it possible to inherit from Options classes. --- test/test_dump.py | 1 - test/test_proxy.py | 1 - 2 files changed, 2 deletions(-) (limited to 'test') diff --git a/test/test_dump.py b/test/test_dump.py index 5d3f9133..1b434f81 100644 --- a/test/test_dump.py +++ b/test/test_dump.py @@ -101,7 +101,6 @@ class TestDumpMaster: def test_options(self): o = dump.Options(verbosity = 2) assert o.verbosity == 2 - libpry.raises(AttributeError, dump.Options, nonexistent = 2) def test_filter(self): assert not "GET" in self._dummy_cycle(1, "~u foo", "", verbosity=1) diff --git a/test/test_proxy.py b/test/test_proxy.py index 13feaead..5828d077 100644 --- a/test/test_proxy.py +++ b/test/test_proxy.py @@ -146,4 +146,3 @@ class TestDummyServer: d.start_slave() d.shutdown() - -- cgit v1.2.3