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

Commit 3615e6c

Browse files
[client] Adapt update tests formatting
1 parent 2802bb4 commit 3615e6c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/02-integration/stories/test_entity_crud.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ def test_update(entity_class):
8888
for update_field, update_value in entity_class.update_data().items():
8989
class_data[update_field] = update_value
9090
input = [{"key": update_field, "value": update_value}]
91-
result = entity_class.ownclass().update_field(id=test_indicator["id"], input=input)
91+
result = entity_class.ownclass().update_field(
92+
id=test_indicator["id"], input=input
93+
)
9294
else:
9395
for update_field, update_value in entity_class.update_data().items():
9496
class_data[update_field] = update_value

0 commit comments

Comments
 (0)