changeset 783:15e26246cc0a

Fix incorrectly set template from [846] - see #426
author dfraser
date Wed, 28 Apr 2010 15:10:31 +0000
parents 4538dfbaa3a4
children 8e76b8f6310a
files bitten/report/testing.py bitten/report/tests/testing.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bitten/report/testing.py
+++ b/bitten/report/testing.py
@@ -176,4 +176,4 @@
                            'failure': total_failure,
                            'error': total_error}
                }
-        return 'json.txt', data
+        return 'bitten_summary_tests.html', data
--- a/bitten/report/tests/testing.py
+++ b/bitten/report/tests/testing.py
@@ -152,7 +152,7 @@
         generator = TestResultsSummarizer(self.env)
         template, data = generator.render_summary(req,
                                             config, build, step, 'test')
-        self.assertEquals('json.txt', template)
+        self.assertEquals('bitten_summary_tests.html', template)
         self.assertEquals(data['totals'],
                 {'ignore': 0, 'failure': 1, 'success': 1, 'error': 1})
         for fixture in data['fixtures']:
Copyright (C) 2012-2017 Edgewall Software