diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_download.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_download.py b/test/test_download.py index dbb73d32a..019498f62 100644 --- a/test/test_download.py +++ b/test/test_download.py @@ -168,7 +168,7 @@ for n, test_case in enumerate(defs):      tname = 'test_' + str(test_case['name'])      i = 1      while hasattr(TestDownload, tname): -        tname = 'test_'  + test_case['name'] + '_' + str(i) +        tname = 'test_'  + str(test_case['name']) + '_' + str(i)          i += 1      test_method.__name__ = tname      setattr(TestDownload, test_method.__name__, test_method)  | 
