Skip to content

Commit 9840966

Browse files
committed
fix: update test for voice visibility from "unlisted" to "unlist"
1 parent ece733f commit 9840966

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/unit/test_types.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ def test_tts_request_custom_new_parameters(self):
168168
class TestVoiceVisibility:
169169
"""Test Voice model with updated visibility."""
170170

171-
def test_voice_with_unlisted_visibility(self, sample_voice_response):
172-
"""Test Voice model with 'unlisted' visibility."""
173-
sample_voice_response["visibility"] = "unlisted"
171+
def test_voice_with_unlist_visibility(self, sample_voice_response):
172+
"""Test Voice model with 'unlist' visibility."""
173+
sample_voice_response["visibility"] = "unlist"
174174
voice = Voice.model_validate(sample_voice_response)
175-
assert voice.visibility == "unlisted"
175+
assert voice.visibility == "unlist"

0 commit comments

Comments
 (0)