From e5c722e9fc67f20c1545f79bb4bbc0188dea7d1f Mon Sep 17 00:00:00 2001 From: historia Date: Fri, 21 Aug 2026 02:33:10 -0400 Subject: fix: remove duplicate tests --- tests/test_tts.py | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'tests/test_tts.py') diff --git a/tests/test_tts.py b/tests/test_tts.py index 33834d2..bebbaf6 100644 --- a/tests/test_tts.py +++ b/tests/test_tts.py @@ -384,25 +384,6 @@ class FasterTTSClientGenerateTests(unittest.TestCase): self.assertEqual(payload["voice"], "default") self.assertEqual(payload["response_format"], "pcm") - -class FasterTTSClientGenerateTests(unittest.TestCase): - """Faster chunk generation: full-length audio produces a chunk file.""" - - def setUp(self): - self._tmp = tempfile.TemporaryDirectory() - self._chunks = patch.object(tts, "CHUNKS_FOLDER", Path(self._tmp.name)) - self._chunks.start() - - def tearDown(self): - self._chunks.stop() - self._tmp.cleanup() - - def _make_client(self): - client = FasterTTSClient.__new__(FasterTTSClient) - client.voice = "default" - client.api_url = "http://127.0.0.1:8000" - return client - def test_full_length_pcm_passes(self): client = self._make_client() text = " ".join(f"word{i}" for i in range(12)) -- cgit v1.2.3