Skip to content
Snippets Groups Projects
Commit 9b06c02a authored by Studer Gabriel's avatar Studer Gabriel
Browse files

Fix type to actually execute unit test

parent e30ba068
No related branches found
No related tags found
No related merge requests found
...@@ -11,10 +11,10 @@ class TestSecStruct(unittest.TestCase): ...@@ -11,10 +11,10 @@ class TestSecStruct(unittest.TestCase):
# unit test only makes sense, when a dssp binary is around # unit test only makes sense, when a dssp binary is around
dssp_path = None dssp_path = None
try: try:
dssp_path = settings.locate("dssp") dssp_path = settings.Locate("dssp")
except: except:
try: try:
dssp_path = settings.locate("mkdssp") dssp_path = settings.Locate("mkdssp")
except: except:
print "Could not find dssp, could not compare sec struct assignment..." print "Could not find dssp, could not compare sec struct assignment..."
return return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment