diff options
Diffstat (limited to 'test/farm/html/run_tabbed.py')
-rw-r--r-- | test/farm/html/run_tabbed.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/farm/html/run_tabbed.py b/test/farm/html/run_tabbed.py index e7e60cec..f28e0c37 100644 --- a/test/farm/html/run_tabbed.py +++ b/test/farm/html/run_tabbed.py @@ -5,14 +5,14 @@ def html_it(): cov.start() import tabbed cov.stop() - cov.html_report(tabbed, directory="../html") + cov.html_report(tabbed, directory="../html_tabbed") runfunc(html_it, rundir="src") # Editors like to change things, make sure our source file still has tabs. contains("src/tabbed.py", "\tif x:\t\t\t\t\t# look nice") -contains("html/tabbed.html", +contains("html_tabbed/tabbed.html", "> <span class='key'>if</span> " "<span class='nam'>x</span><span class='op'>:</span>" " " @@ -20,5 +20,5 @@ contains("html/tabbed.html", "<span class='com'># look nice</span>" ) -doesnt_contain("html/tabbed.html", "\t") -clean("html") +doesnt_contain("html_tabbed/tabbed.html", "\t") +clean("html_tabbed") |