From ba15c830c5ca5aa8e835c4710405e043215f3920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 18 Mar 2016 16:56:28 +0100 Subject: [PATCH] PEP8 formatting --- tests/test_utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 96c86d8..4b8542f 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -12,7 +12,6 @@ from pillarsdk import utils class PillarUtilsTests(unittest.TestCase): - def test_join_url_params(self): """Test that strings and dicts work as parameters.""" @@ -52,7 +51,6 @@ class PillarUtilsTests(unittest.TestCase): 'after': 'haha actually before', 'last': 'yeah, last'})) - def test_merge_dict(self): self.assertEqual({1: 2, 'foo': 'bar', 'foo1': 'bar2'}, utils.merge_dict({"foo": "bar"}, {1: 2}, {"foo1": "bar2"}))