Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions libs/labelbox/tests/data/annotation_import/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2337,7 +2337,10 @@ def expected_export_v2_conversation():
"name": "text_index",
"value": "text_index",
"message_id": "0",
"conversational_text_answer": {"content": "free form text..."},
"conversational_text_answer": {
"content": "free form text...",
"classifications": [],
},
},
],
"relationships": [],
Expand Down Expand Up @@ -2655,7 +2658,10 @@ def expected_exports_v2_mmc(mmc_example_data_row_message_ids):
"name": "text_index",
"value": "text_index",
"message_id": some_parent_id,
"conversational_text_answer": {"content": "free form text..."},
"conversational_text_answer": {
"content": "free form text...",
"classifications": [],
},
},
],
"relationships": [],
Expand Down
Loading