We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f08a6ad commit e5189d6Copy full SHA for e5189d6
tests/integration/synapseclient/models/async/test_submission_status_async.py
@@ -385,6 +385,10 @@ async def test_store_submission_status_without_changes(
385
"""Test that storing a submission status without changes shows warning async."""
386
# GIVEN a submission status that hasn't been modified
387
# (it already has _last_persistent_instance set from get())
388
+ assert (
389
+ test_submission_status._last_persistent_instance == test_submission_status
390
+ )
391
+ assert not test_submission_status.has_changed
392
393
# WHEN I try to store it without making changes
394
result = await test_submission_status.store_async(synapse_client=self.syn)
0 commit comments