Commit 9f621160 authored by Vincent Pelletier's avatar Vincent Pelletier

Now that xhtml became installation default, check for xhtml, not html.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8247 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 8e10ef18
......@@ -213,15 +213,15 @@ class TestBusinessTemplate(ERP5TypeTestCase):
self.failIf('erp5_pdf_style' in selection)
self.failIf('erp5_csv_style' in selection)
self.failIf('erp5_core' not in selection)
self.failIf('erp5_html_style' not in selection)
self.failIf('erp5_xhtml_style' not in selection)
if skin_name == 'Print':
self.failIf('erp5_html_style' in selection)
self.failIf('erp5_xhtml_style' in selection)
self.failIf('erp5_csv_style' in selection)
self.failIf('erp5_core' not in selection)
self.failIf('erp5_pdf_style' not in selection)
if skin_name == 'CSV':
self.failIf('erp5_pdf_style' in selection)
self.failIf('erp5_html_style' in selection)
self.failIf('erp5_xhtml_style' in selection)
self.failIf('erp5_core' not in selection)
self.failIf('erp5_csv_style' not in selection)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment