From 9b06c02a39e3c6a5ee7028db72dca921708a027e Mon Sep 17 00:00:00 2001
From: Gabriel Studer <gabriel.studer@unibas.ch>
Date: Thu, 17 Aug 2017 20:53:32 +0200
Subject: [PATCH] Fix type to actually execute unit test

---
 modules/mol/alg/tests/test_sec_struct.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/mol/alg/tests/test_sec_struct.py b/modules/mol/alg/tests/test_sec_struct.py
index 18ab385a7..3c2d11295 100644
--- a/modules/mol/alg/tests/test_sec_struct.py
+++ b/modules/mol/alg/tests/test_sec_struct.py
@@ -11,10 +11,10 @@ class TestSecStruct(unittest.TestCase):
     # unit test only makes sense, when a dssp binary is around
     dssp_path = None
     try:
-      dssp_path = settings.locate("dssp")
+      dssp_path = settings.Locate("dssp")
     except:
       try:
-        dssp_path = settings.locate("mkdssp")
+        dssp_path = settings.Locate("mkdssp")
       except:
         print "Could not find dssp, could not compare sec struct assignment..."
         return
-- 
GitLab