From 10030cd173058a8b0f03fc2d47a9155a0184e7c7 Mon Sep 17 00:00:00 2001 From: Jonathan Seawright Date: Mon, 5 Dec 2016 13:29:09 -0600 Subject: [PATCH] Fix pep8 errors --- kmip/tests/unit/core/factories/test_attribute.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kmip/tests/unit/core/factories/test_attribute.py b/kmip/tests/unit/core/factories/test_attribute.py index b3d3259..eea93c7 100644 --- a/kmip/tests/unit/core/factories/test_attribute.py +++ b/kmip/tests/unit/core/factories/test_attribute.py @@ -13,13 +13,13 @@ # License for the specific language governing permissions and limitations # under the License. -import mock import testtools from kmip.core import enums from kmip.core.factories import attributes + class TestAttributeFactory(testtools.TestCase): """ Test suite for Attribute Factory @@ -42,4 +42,3 @@ class TestAttributeFactory(testtools.TestCase): attr_b = self.attribute_factory.create_attribute(attr_type, attr_name) self.assertTrue(attr_a == attr_b) self.assertFalse(attr_a != attr_b) -