From e35fd7126b5e82d9628185bbe6503e288600ff53 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Mon, 14 Mar 2011 13:49:30 +1300 Subject: Fix flow formatting unit tests. --- test/test_console.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/test_console.py b/test/test_console.py index 037d86d2..d2cfb214 100644 --- a/test/test_console.py +++ b/test/test_console.py @@ -101,11 +101,9 @@ class uformat_flow(libpry.AutoTree): f.request = f.response.request f.backup() - assert ('method', '[edited] ') in console.format_flow(f, True) - assert ('method', '[edited] ') in console.format_flow(f, True, True) f.request.set_replay() - assert ('method', '[replay] ') in console.format_flow(f, True) - assert ('method', '[replay] ') in console.format_flow(f, True, True) + assert ('method', '[replay]') in console.format_flow(f, True) + assert ('method', '[replay]') in console.format_flow(f, True, True) f.response.code = 404 assert ('error', '404') in console.format_flow(f, True, True) -- cgit v1.2.3