diff options
Diffstat (limited to 'test/farm/html/run_tabbed.py')
-rw-r--r-- | test/farm/html/run_tabbed.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/farm/html/run_tabbed.py b/test/farm/html/run_tabbed.py index 88ffcaef..e7e60cec 100644 --- a/test/farm/html/run_tabbed.py +++ b/test/farm/html/run_tabbed.py @@ -10,12 +10,14 @@ def html_it(): 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\t# look nice") +contains("src/tabbed.py", "\tif x:\t\t\t\t\t# look nice") contains("html/tabbed.html", - "> <span class='key'>if</span> <span class='nam'>x</span>" - "<span class='op'>:</span> " - " <span class='com'># look nice</span>" + "> <span class='key'>if</span> " + "<span class='nam'>x</span><span class='op'>:</span>" + " " + " " + "<span class='com'># look nice</span>" ) doesnt_contain("html/tabbed.html", "\t") |