Skip to content

Commit b3a0dad

Browse files
committed
NRL-1051 fix int tests
1 parent 968117e commit b3a0dad

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
@@ -229,7 +229,7 @@ def assert_bundle_contains_documentreference_values_step(context: Context):
229229
raise ValueError("No id provided in the table")
230230

231231
for entry in context.bundle.entry:
232-
if entry.resource.id != items["id"]:
232+
if entry.resource.get("id") != items["id"]:
233233
continue
234234

235235
return assert_document_reference_matches_value(context, entry.resource, items)

0 commit comments

Comments
 (0)