From 88df694dc18cd72dc1c75191497be0fc680dc031 Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Sun, 21 May 2017 19:24:24 +0200 Subject: [PATCH] Formating. --- tests/test_basics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_basics.py b/tests/test_basics.py index 049dc90..283e3d7 100644 --- a/tests/test_basics.py +++ b/tests/test_basics.py @@ -11,7 +11,6 @@ def test_count(): with pytest.raises(TypeError): bonobo.count() - context = MagicMock() with ContextCurrifier(bonobo.count).as_contextmanager(context) as stack: @@ -49,6 +48,7 @@ def test_limit_not_there(): assert results == [NOT_MODIFIED] * 10 + def test_limit_default(): context, results = MagicMock(), []