Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 88b958e

Browse files
[client] Test update str value
1 parent 3615e6c commit 88b958e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/02-integration/stories/test_entity_crud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def test_update(entity_class):
8787
if function_present:
8888
for update_field, update_value in entity_class.update_data().items():
8989
class_data[update_field] = update_value
90-
input = [{"key": update_field, "value": update_value}]
90+
input = [{"key": update_field, "value": str(update_value)}]
9191
result = entity_class.ownclass().update_field(
9292
id=test_indicator["id"], input=input
9393
)

0 commit comments

Comments
 (0)