mirror of https://github.com/OpenKMIP/PyKMIP.git
Fix pep8 errors
This commit is contained in:
parent
7b25780a4e
commit
10030cd173
|
@ -13,13 +13,13 @@
|
||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
import mock
|
|
||||||
import testtools
|
import testtools
|
||||||
|
|
||||||
from kmip.core import enums
|
from kmip.core import enums
|
||||||
|
|
||||||
from kmip.core.factories import attributes
|
from kmip.core.factories import attributes
|
||||||
|
|
||||||
|
|
||||||
class TestAttributeFactory(testtools.TestCase):
|
class TestAttributeFactory(testtools.TestCase):
|
||||||
"""
|
"""
|
||||||
Test suite for Attribute Factory
|
Test suite for Attribute Factory
|
||||||
|
@ -42,4 +42,3 @@ class TestAttributeFactory(testtools.TestCase):
|
||||||
attr_b = self.attribute_factory.create_attribute(attr_type, attr_name)
|
attr_b = self.attribute_factory.create_attribute(attr_type, attr_name)
|
||||||
self.assertTrue(attr_a == attr_b)
|
self.assertTrue(attr_a == attr_b)
|
||||||
self.assertFalse(attr_a != attr_b)
|
self.assertFalse(attr_a != attr_b)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue