From 6d74754724445feb08a3fb8814d72ee5cca31ac3 Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Wed, 15 Nov 2023 17:04:34 -0500 Subject: [PATCH] id --- ElevenLabs-DotNet-Tests/Test_Fixture_03_TextToSpeechEndpoint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElevenLabs-DotNet-Tests/Test_Fixture_03_TextToSpeechEndpoint.cs b/ElevenLabs-DotNet-Tests/Test_Fixture_03_TextToSpeechEndpoint.cs index 3cef1c2..83d8ca4 100644 --- a/ElevenLabs-DotNet-Tests/Test_Fixture_03_TextToSpeechEndpoint.cs +++ b/ElevenLabs-DotNet-Tests/Test_Fixture_03_TextToSpeechEndpoint.cs @@ -19,7 +19,7 @@ public async Task Test_01_TextToSpeech() var defaultVoiceSettings = await ElevenLabsClient.VoicesEndpoint.GetDefaultVoiceSettingsAsync(); var voiceClip = await ElevenLabsClient.TextToSpeechEndpoint.TextToSpeechAsync("The quick brown fox jumps over the lazy dog.", voice, defaultVoiceSettings); Assert.NotNull(voiceClip); - Console.WriteLine(voiceClip); + Console.WriteLine(voiceClip.Id); } [Test]