diff --git a/tests/test_object_proxy.py b/tests/test_object_proxy.py index dcc8373..67e1ee7 100644 --- a/tests/test_object_proxy.py +++ b/tests/test_object_proxy.py @@ -1185,7 +1185,7 @@ class TestDerivedClassCreation(unittest.TestCase): class DerivedObjectProxy(wrapt.ObjectProxy): def __new__(cls, wrapped): - instance = super(DerivedObjectProxy, cls).__new__(cls, wrapped) + instance = super(DerivedObjectProxy, cls).__new__(cls) instance.__init__(wrapped) def __init__(self, wrapped):