Skip to content

Commit a4975b5

Browse files
authored
Merge pull request #108 from holdenweb/test-ci
Cancel CircleCI and (hopefully) test new Github actions.
2 parents 29798bc + ce03193 commit a4975b5

File tree

3 files changed

+5
-56
lines changed

3 files changed

+5
-56
lines changed

.circleci/config.yml

-53
This file was deleted.

src/hu/__init__.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
from ._version import __version__
2-
from .dotted_dict import DottedDict # noqa
3-
from .object_dict import ObjectDict # noqa
2+
from .dotted_dict import DottedDict
3+
from .object_dict import ObjectDict
4+
5+
__all__ = ("__version__", "DottedDict", "ObjectDict")

tests/test_object_dict.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_object_dict():
4848
od_1.new_string = "3456"
4949
assert set(od_1.keys()) == {"top", "new_string"}
5050
od_1.new_list = [1, 2, {"key": "value"}]
51-
assert type(od_1.new_list[2]) == ObjectDict
51+
assert type(od_1.new_list[2]) is ObjectDict
5252
assert od_1.new_list[2].key is od_1.new_list[2]["key"]
5353
assert od_1.new_list[2].key == "value"
5454
assert set(od_1.keys()) == {"top", "new_string", "new_list"}

0 commit comments

Comments
 (0)