Browse Source

gunittest: fix ending tag for test file report

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@64682 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 10 years ago
parent
commit
4d6dea304f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/python/gunittest/reporters.py

+ 1 - 1
lib/python/gunittest/reporters.py

@@ -718,7 +718,7 @@ class GrassTestFilesHtmlReporter(GrassTestFilesCountingReporter):
             file_index.write(
                 '<tr><td>Tested modules</td><td>{}</td></tr>'.format(
                     ', '.join(sorted(set(modules)))))
-        file_index.write('<tbody><table>')
+        file_index.write('</tbody></table>')
 
         # here we would have also links to coverage, profiling, ...
         #'<li><a href="testcodecoverage/index.html">code coverage</a></li>'