Skip to content
Snippets Groups Projects
Commit 594a59a8 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

MAINT: whitespace changes

parent 5a5c1a8d
No related branches found
No related tags found
No related merge requests found
......@@ -26,16 +26,18 @@
@author: Timm Fitschen
"""
import os
import shutil
from lxml import etree
from sys import maxsize as maxint
from random import randint
from sys import maxsize as maxint
from caosdb import execute_query, get_config, get_connection
from caosdb.common import models
from caosdb.exceptions import EntityError
from caosdb import execute_query, get_config, get_connection
from caosdb.utils.checkFileSystemConsistency import runCheck
from nose.tools import assert_is_not_none, assert_true, assert_false, assert_equals, assert_raises, with_setup, nottest # @UnresolvedImport
from lxml import etree
from nose.tools import (assert_equals, assert_false, # @UnresolvedImport
assert_is_not_none, assert_raises, assert_true,
nottest, with_setup)
def setup_module():
......@@ -237,6 +239,7 @@ def test_file6():
d = models.DropOffBox()
d.sync()
path = d.path + "/testfolder"
if not os.path.isdir(d.path):
print("drop off box not on this system.")
else:
......@@ -293,6 +296,7 @@ def test_file7():
d = models.DropOffBox()
d.sync()
path = d.path + "/testfolder"
if not os.path.isdir(d.path):
print("drop off box not on this system.")
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment