Skip to content

Commit 9a1b55a

Browse files
committed
fix extend
1 parent 15455db commit 9a1b55a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

qtp_job_output_folder/tests/test_summary.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ def test_summary(self):
6161
# asserting content of html
6262
res = self.qclient.get("/qiita_db/artifacts/%s/" % aid)
6363
# cleaning artifact files, to avoid errors
64-
[self._clean_up_files.extend(ff['filepath'])
64+
[self._clean_up_files.extend([ff['filepath']])
6565
for f in res['files'].values() for ff in f]
66-
print(self._clean_up_files)
6766
html_fp = res['files']['html_summary'][0]['filepath']
6867
with open(html_fp) as html_f:
6968
html = html_f.read()

0 commit comments

Comments
 (0)