diff options
author | Artem Yunusov <nedrlab@gmail.com> | 2008-07-03 21:53:03 +0500 |
---|---|---|
committer | Artem Yunusov <nedrlab@gmail.com> | 2008-07-03 21:53:03 +0500 |
commit | 33d3f28f8a01cbd0ec13bb55ec8ce3755deaa29a (patch) | |
tree | e98f22cd51cc770dc8541a2238bc703d5688d7fd /test-markdown.py | |
parent | ce843d036d0061d470dec006bb6e0300b0b3020f (diff) | |
download | markdown-33d3f28f8a01cbd0ec13bb55ec8ce3755deaa29a.tar.gz markdown-33d3f28f8a01cbd0ec13bb55ec8ce3755deaa29a.tar.bz2 markdown-33d3f28f8a01cbd0ec13bb55ec8ce3755deaa29a.zip |
Code blocks escaping bug fixed. Some test suite modifications.
Diffstat (limited to 'test-markdown.py')
-rw-r--r-- | test-markdown.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-markdown.py b/test-markdown.py index 3007d72..68a10e6 100644 --- a/test-markdown.py +++ b/test-markdown.py @@ -244,9 +244,9 @@ def testDirectory(dir, measure_time=False, safe_mode=False) : t = time.clock() for x in repeat: actual_output = md.convert(input) - conversion_time = time.clock() - t conversion_mem = memory(mem) + md.reset() expected_lines = [x.encode("utf8") for x in smart_split(expected_output)] actual_lines = [x.encode("utf8") for x in smart_split(actual_output)] |