We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bc09b0 commit 49cb9f9Copy full SHA for 49cb9f9
tests/functional/test_lambda_trigger_events.py
@@ -51,6 +51,8 @@ def message(self) -> str:
51
52
assert DataClassSample({"message": "foo1"}) == DataClassSample({"message": "foo1"})
53
assert DataClassSample({"message": "foo1"}) != DataClassSample({"message": "foo2"})
54
+ assert DataClassSample({"message": "foo1"}) is not object()
55
+ assert object() is not DataClassSample({"message": "foo1"})
56
57
58
def test_cloud_watch_trigger_event():
0 commit comments