From 990d901d65dea9549ea7cb5604af7669fe21882e Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Sat, 25 Jan 2014 20:29:09 -0700 Subject: [PATCH] Fix single spaces between methods in test_dict.py --- tests/models/test_dict.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/models/test_dict.py b/tests/models/test_dict.py index c5da994..cf3b2fd 100644 --- a/tests/models/test_dict.py +++ b/tests/models/test_dict.py @@ -3,11 +3,14 @@ from hy.models.dict import HyDict hydict = HyDict(["a", 1, "b", 2, "c", 3]) + def test_dict_items(): assert hydict.items() == [("a", 1), ("b", 2), ("c", 3)] + def test_dict_keys(): assert hydict.keys() == ["a", "b", "c"] + def test_dict_values(): assert hydict.values() == [1, 2, 3]