Fix single spaces between methods in test_dict.py
This commit is contained in:
parent
13a88b358e
commit
990d901d65
@ -3,11 +3,14 @@ from hy.models.dict import HyDict
|
|||||||
|
|
||||||
hydict = HyDict(["a", 1, "b", 2, "c", 3])
|
hydict = HyDict(["a", 1, "b", 2, "c", 3])
|
||||||
|
|
||||||
|
|
||||||
def test_dict_items():
|
def test_dict_items():
|
||||||
assert hydict.items() == [("a", 1), ("b", 2), ("c", 3)]
|
assert hydict.items() == [("a", 1), ("b", 2), ("c", 3)]
|
||||||
|
|
||||||
|
|
||||||
def test_dict_keys():
|
def test_dict_keys():
|
||||||
assert hydict.keys() == ["a", "b", "c"]
|
assert hydict.keys() == ["a", "b", "c"]
|
||||||
|
|
||||||
|
|
||||||
def test_dict_values():
|
def test_dict_values():
|
||||||
assert hydict.values() == [1, 2, 3]
|
assert hydict.values() == [1, 2, 3]
|
||||||
|
Loading…
Reference in New Issue
Block a user