Skip to content
Snippets Groups Projects
Commit f37ca297 authored by Bastien Abadie's avatar Bastien Abadie
Browse files

run most tests

parent beb8ab81
No related branches found
No related tags found
1 merge request!75Retrieve transcriptions from local cache in list_transcriptions
This commit is part of merge request !75. Comments created here will be created in the context of that merge request.
......@@ -27,22 +27,18 @@ TRANSCRIPTIONS_SAMPLE = [
]
TRANSCRIPTIONS_TO_INSERT = [
CachedTranscription(
id=convert_str_uuid_to_hex("11111111-1111-1111-1111-111111111111"),
element_id=convert_str_uuid_to_hex("12341234-1234-1234-1234-123412341234"),
id=UUID("11111111-1111-1111-1111-111111111111"),
element_id=UUID("12341234-1234-1234-1234-123412341234"),
text="Hello!",
confidence=0.42,
worker_version_id=convert_str_uuid_to_hex(
"56785678-5678-5678-5678-567856785678"
),
worker_version_id=UUID("56785678-5678-5678-5678-567856785678"),
),
CachedTranscription(
id=convert_str_uuid_to_hex("22222222-2222-2222-2222-222222222222"),
element_id=convert_str_uuid_to_hex("12341234-1234-1234-1234-123412341234"),
id=UUID("22222222-2222-2222-2222-222222222222"),
element_id=UUID("12341234-1234-1234-1234-123412341234"),
text="How are you?",
confidence=0.42,
worker_version_id=convert_str_uuid_to_hex(
"90129012-9012-9012-9012-901290129012"
),
worker_version_id=UUID("90129012-9012-9012-9012-901290129012"),
),
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment