Skip to content

Commit 8c627ee

Browse files
committed
NRL-1051 fix int tests
1 parent b3a0dad commit 8c627ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/features/steps/3_assert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def assert_bundle_contains_documentreference_values_step(context: Context):
243243
def assert_bundle_does_not_contain_doc_ref_step(context: Context, doc_ref_id: str):
244244
for entry in context.bundle.entry:
245245
assert (
246-
entry.resource.id != doc_ref_id
246+
entry.resource.get("id") != doc_ref_id
247247
), f"DocumentReference with ID {doc_ref_id} found in the response"
248248

249249

0 commit comments

Comments
 (0)