From 5febd1fc2be15b2e6330e89f42cc5df65f8d4c1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Thu, 10 Dec 2020 18:32:27 +0100 Subject: [PATCH] fix --- unittests/test_concrete_property.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/unittests/test_concrete_property.py b/unittests/test_concrete_property.py index b8060987..0e5c2853 100644 --- a/unittests/test_concrete_property.py +++ b/unittests/test_concrete_property.py @@ -24,17 +24,19 @@ """Tests for the _ConcreteProperty class.""" -# pylint: disable=missing-docstring -from nose.tools import (assert_is_not_none as there, assert_true as tru, - assert_equal as eq) -from caosdb.common.models import _ConcreteProperty from caosdb import configure_connection +from caosdb.common.models import _ConcreteProperty from caosdb.connection.mockup import MockUpServerConnection +# pylint: disable=missing-docstring +from nose.tools import assert_equal as eq +from nose.tools import assert_is_not_none as there +from nose.tools import assert_true as tru def setup_module(): there(_ConcreteProperty) configure_connection(url="unittests", username="testuser", + password_method="plain", password="testpassword", timeout=200, implementation=MockUpServerConnection) -- GitLab