From f265cff3a93f13ce2b16493bd03b336757513a56 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Wed, 24 Dec 2014 01:39:38 +0100 Subject: fix tests, experimental travis speedup --- test/test_flow.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/test_flow.py') diff --git a/test/test_flow.py b/test/test_flow.py index 764b9f24..6230ad73 100644 --- a/test/test_flow.py +++ b/test/test_flow.py @@ -274,7 +274,9 @@ class TestFlow: f2 = f.copy() a = f.get_state() b = f2.get_state() - assert f.get_state() == f2.get_state() + del a["id"] + del b["id"] + assert a == b assert not f == f2 assert not f is f2 assert f.request.get_state() == f2.request.get_state() @@ -333,6 +335,7 @@ class TestFlow: assert f.get_state() == protocol.http.HTTPFlow.from_state(state).get_state() f2 = f.copy() + f2.id = f.id # copy creates a different uuid assert f.get_state() == f2.get_state() assert not f == f2 f2.error = Error("e2") -- cgit v1.2.3