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 b3a0dad commit 8c627eeCopy full SHA for 8c627ee
tests/features/steps/3_assert.py
@@ -243,7 +243,7 @@ def assert_bundle_contains_documentreference_values_step(context: Context):
243
def assert_bundle_does_not_contain_doc_ref_step(context: Context, doc_ref_id: str):
244
for entry in context.bundle.entry:
245
assert (
246
- entry.resource.id != doc_ref_id
+ entry.resource.get("id") != doc_ref_id
247
), f"DocumentReference with ID {doc_ref_id} found in the response"
248
249
0 commit comments