From be2eec7aabde5f9877ffbbcce96c10eab454ac38 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 28 Oct 2014 08:32:26 -0700 Subject: Fix tests --- tests/test_interfaces.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'tests') diff --git a/tests/test_interfaces.py b/tests/test_interfaces.py index 0c72ad33..b988abee 100644 --- a/tests/test_interfaces.py +++ b/tests/test_interfaces.py @@ -17,9 +17,7 @@ import pytest import six -from cryptography.utils import ( - InterfaceNotImplemented, register_interface, verify_interface -) +from cryptography.utils import InterfaceNotImplemented, verify_interface class TestVerifyInterface(object): @@ -30,7 +28,6 @@ class TestVerifyInterface(object): def method(self): """A simple method""" - @register_interface(SimpleInterface) class NonImplementer(object): pass @@ -44,7 +41,6 @@ class TestVerifyInterface(object): def method(self, a): """Method with one argument""" - @register_interface(SimpleInterface) class NonImplementer(object): def method(self): """Method with no arguments""" @@ -59,7 +55,6 @@ class TestVerifyInterface(object): def property(self): """An abstract property""" - @register_interface(SimpleInterface) class NonImplementer(object): @property def property(self): -- cgit v1.2.3