From 2d694306730f4e68e4fd3fe1d67958ed8deeb83b Mon Sep 17 00:00:00 2001 From: Xavier Robin <xavier.robin@unibas.ch> Date: Tue, 15 Aug 2023 11:56:55 +0200 Subject: [PATCH] fix: CAD score test broken with classic CAD --- modules/bindings/tests/test_cadscore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bindings/tests/test_cadscore.py b/modules/bindings/tests/test_cadscore.py index c15996e2d..397d58ff3 100644 --- a/modules/bindings/tests/test_cadscore.py +++ b/modules/bindings/tests/test_cadscore.py @@ -21,7 +21,7 @@ class TestCADBindings(unittest.TestCase): except settings.FileNotFound: self.skipTest("Could not find CAD score classic executables: ignoring unit tests") - cad_result = cadscore.CADScore(self.protein, self.protein, + cad_result = cadscore.CADScore(self.protein, self.protein, mode="classic", label="cad_classic") # model and reference are the same, we expect a global CAD score of 1 -- GitLab