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