Skip to content
Snippets Groups Projects
Commit 4df261e6 authored by felmer's avatar felmer
Browse files

SSDM-3505: bug in test.py fixed: wrong test suite selection

SVN: 36284
parent 697d472c
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ for f in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))): ...@@ -20,7 +20,7 @@ for f in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))):
if len(splittedFileName) > 1: if len(splittedFileName) > 1:
moduleName = splittedFileName[0] moduleName = splittedFileName[0]
fileType = splittedFileName[1] fileType = splittedFileName[1]
if moduleName.startswith('test-') and fileType == 'py': if moduleName.startswith('test_') and fileType == 'py':
testCases.append(moduleName) testCases.append(moduleName)
try: try:
__import__(moduleName) __import__(moduleName)
......
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