diff options
Diffstat (limited to 'docutils/test/DocutilsTestSupport.py')
| -rw-r--r-- | docutils/test/DocutilsTestSupport.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docutils/test/DocutilsTestSupport.py b/docutils/test/DocutilsTestSupport.py index 923336edc..00ebefe61 100644 --- a/docutils/test/DocutilsTestSupport.py +++ b/docutils/test/DocutilsTestSupport.py @@ -268,7 +268,7 @@ class TransformTestCase(CustomTestCase): def test_transforms(self): if self.run_in_debugger: pdb.set_trace() - document = utils.new_document(self.options) + document = utils.new_document('test data', self.options) self.parser.parse(self.input, document) for transformClass in (self.transforms + universal.test_transforms): transformClass(document, self).transform() @@ -281,7 +281,7 @@ class TransformTestCase(CustomTestCase): print '\n', self.id print '-' * 70 print self.input - document = utils.new_document(self.options) + document = utils.new_document('test data', self.options) self.parser.parse(self.input, document) print '-' * 70 print document.pformat() @@ -314,7 +314,7 @@ class ParserTestCase(CustomTestCase): def test_parser(self): if self.run_in_debugger: pdb.set_trace() - document = utils.new_document(self.options) + document = utils.new_document('test data', self.options) self.parser.parse(self.input, document) output = document.pformat() self.compare_output(self.input, output, self.expected) |
