Fix incorrect syntax in test
Browse files- tests/test_dict.py +2 -3
tests/test_dict.py
CHANGED
|
@@ -28,9 +28,8 @@ class DictDefaultTest(unittest.TestCase):
|
|
| 28 |
), "DictDefault should return value for existing keys in list"
|
| 29 |
|
| 30 |
assert (
|
| 31 |
-
"value_e" in cfg.key_d
|
| 32 |
-
|
| 33 |
-
)
|
| 34 |
|
| 35 |
def test_dict_or_operator(self):
|
| 36 |
cfg = DictDefault(
|
|
|
|
| 28 |
), "DictDefault should return value for existing keys in list"
|
| 29 |
|
| 30 |
assert (
|
| 31 |
+
"value_e" in cfg.key_d
|
| 32 |
+
), "DictDefault should support in operator for existing keys in list"
|
|
|
|
| 33 |
|
| 34 |
def test_dict_or_operator(self):
|
| 35 |
cfg = DictDefault(
|