From 697d472c76d93a987e49ff1bceeae7766ddd537b Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Tue, 26 Apr 2016 05:53:42 +0000 Subject: [PATCH] SSDM-3505: bug in test.py fixed: wrong test suite selection SVN: 36283 --- integration-tests/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/test.py b/integration-tests/test.py index de0d0310609..528449b7256 100755 --- a/integration-tests/test.py +++ b/integration-tests/test.py @@ -20,7 +20,7 @@ for f in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))): if len(splittedFileName) > 1: moduleName = splittedFileName[0] fileType = splittedFileName[1] - if moduleName.startswith('test') and fileType == 'py': + if moduleName.startswith('test-') and fileType == 'py': testCases.append(moduleName) try: __import__(moduleName) -- GitLab