diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-22 07:54:57 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-22 07:54:57 +0300 |
| commit | 1cc15cfbd68d45ae6d561e5659422e72bf9ecd1d (patch) | |
| tree | 92bd29d34fed9c4d28cfe4d94e35b040c0b505bc /internal/audio/provider_test.go | |
| parent | 1365dde5c25e1865b82fbfea50208327d5e3a51c (diff) | |
Remove audio cache feature to simplify codebase and avoid cache-related issues
🤖 Generated with [opencode](https://opencode.ai)
Co-Authored-By: opencode <noreply@opencode.ai>
Diffstat (limited to 'internal/audio/provider_test.go')
| -rw-r--r-- | internal/audio/provider_test.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/internal/audio/provider_test.go b/internal/audio/provider_test.go index 7fda932..97d3e9c 100644 --- a/internal/audio/provider_test.go +++ b/internal/audio/provider_test.go @@ -50,13 +50,6 @@ func TestDefaultProviderConfig(t *testing.T) { t.Errorf("Expected OpenAI speed 1.0, got %f", config.OpenAISpeed) } - if !config.EnableCache { - t.Error("Expected cache to be enabled by default") - } - - if config.CacheDir != "./.audio_cache" { - t.Errorf("Expected cache dir './.audio_cache', got '%s'", config.CacheDir) - } } func TestNewProvider(t *testing.T) { |
