Skip to content

Commit 922bbf7

Browse files
crusaderkycclauss
andauthored
Update srsly/tests/cloudpickle/cloudpickle_test.py
Co-authored-by: Christian Clauss <[email protected]>
1 parent 06582bf commit 922bbf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

srsly/tests/cloudpickle/cloudpickle_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def method_c(self):
116116
expected_keys = ["C_CONSTANT", "__doc__", "__firstlineno__", "method_c"]
117117
else:
118118
expected_keys = ["C_CONSTANT", "__doc__", "method_c"]
119-
assert sorted(clsdict.keys()) == expected_keys
119+
assert sorted(clsdict) == expected_keys
120120
assert clsdict["C_CONSTANT"] == 43
121121
assert clsdict["__doc__"] is None
122122
assert clsdict["method_c"](C()) == C().method_c()

0 commit comments

Comments
 (0)