PEP8 formatting

This commit is contained in:
2016-03-18 16:56:28 +01:00
parent 886e3c7eaf
commit ba15c830c5

View File

@@ -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"}))