Fix pep8 errors

This commit is contained in:
Jonathan Seawright 2016-12-05 13:29:09 -06:00
parent 7b25780a4e
commit 10030cd173
1 changed files with 1 additions and 2 deletions

View File

@ -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)