From 9cf677eb4662248faa23cf6b2703e26b78ae89d0 Mon Sep 17 00:00:00 2001 From: Artur Maciag Date: Thu, 19 Oct 2017 11:11:27 +0100 Subject: [PATCH] Test specs formatting fix --- tests/unit/test_specs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_specs.py b/tests/unit/test_specs.py index 551d3f4..4b71794 100644 --- a/tests/unit/test_specs.py +++ b/tests/unit/test_specs.py @@ -10,14 +10,14 @@ class TestSpecs(object): @pytest.fixture def path1(self): - operations = { + operations = { 'get': mock.sentinel.path1_get, } return Path('path1', operations) @pytest.fixture def path2(self): - operations = { + operations = { 'post': mock.sentinel.path2_psot, } return Path('path2', operations)