From 03ca4b1fd3beddd7b810ed0078e2ca0628db1a2b Mon Sep 17 00:00:00 2001 From: Scott Sadler Date: Fri, 17 Mar 2017 15:34:17 +0100 Subject: [PATCH] make stepping pipeline queue items mutable --- tests/pipelines/stepping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pipelines/stepping.py b/tests/pipelines/stepping.py index 030863c6..1a9d3a69 100644 --- a/tests/pipelines/stepping.py +++ b/tests/pipelines/stepping.py @@ -106,7 +106,7 @@ class MultipipesStepper: for item in items: if type(item) != tuple: item = (item,) - queue.append(item) + queue.append(list(item)) def step(self, name, **kwargs): """ Advance pipeline stage. Throws Empty if no data to consume. """