From 30f13eab895d0ee02ca3aaf5c776cabb4ed97af2 Mon Sep 17 00:00:00 2001 From: Mike Shoup Date: Fri, 12 Jul 2019 13:15:12 -0600 Subject: [PATCH] Fix whitespace --- tests/test_recipes.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/test_recipes.py b/tests/test_recipes.py index 1d97d7b..45c5959 100644 --- a/tests/test_recipes.py +++ b/tests/test_recipes.py @@ -256,20 +256,20 @@ def test_step_form_doc(app): step.temp.data = Decimal('152') step.time.data = Decimal('60') assert step.doc == { - 'name': 'Test Mash Step', - 'type': 'Infusion', - 'temp': '152', - 'time': '60' - } + 'name': 'Test Mash Step', + 'type': 'Infusion', + 'temp': '152', + 'time': '60' + } step.amount.data = Decimal('3.5') assert step.doc == { - 'name': 'Test Mash Step', - 'type': 'Infusion', - 'temp': '152', - 'time': '60', - 'amount': '3.5' - } + 'name': 'Test Mash Step', + 'type': 'Infusion', + 'temp': '152', + 'time': '60', + 'amount': '3.5' + } def test_yeast_form_doc(app):