From c9eb44119daaac1fa2d4188a26651c4eef7d5655 Mon Sep 17 00:00:00 2001 From: Carmine Paolino Date: Thu, 4 Dec 2025 17:58:12 +0100 Subject: [PATCH] Fixed typo in VCR filters (#1929) I know it's a small thing, but I just noticed that :shrug: Be careful if you reintroduce your old VCRs as they have OPEN_API_KEY --- test/test_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index 722d39d59..03cda99db 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -13,7 +13,7 @@ VCR.configure do |config| config.allow_http_connections_when_no_cassette = true config.cassette_library_dir = "test/vcr_cassettes" config.hook_into :webmock - config.filter_sensitive_data("") { Rails.application.credentials.openai_api_key || ENV["OPEN_AI_API_KEY"] } + config.filter_sensitive_data("") { Rails.application.credentials.openai_api_key || ENV["OPEN_AI_API_KEY"] } config.default_cassette_options = { match_requests_on: [ :method, :uri, :body ] }