Skip to content

Commit 99a7d5e

Browse files
committed
Lint fix - single quotes
1 parent cd7484e commit 99a7d5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/models/apple/api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def self.from_env
2727
end
2828

2929
def self.api_base
30-
ENV['APPLE_PODCASTS_CONNECT_API_URL']
30+
ENV["APPLE_PODCASTS_CONNECT_API_URL"]
3131
end
3232

3333
def self.from_key(apple_key)

test/test_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
ENV["ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY"] = "andthisisanotheronetoothankyouuu"
2424
ENV["ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT"] = "maybeyouarefeelingsaltyaboutthis"
2525
ENV["PODPING_AUTH_TOKEN"] = "test_token"
26-
ENV['APPLE_PODCASTS_CONNECT_API_URL'] = "https://aardvark.prx.org/"
26+
ENV["APPLE_PODCASTS_CONNECT_API_URL"] = "https://aardvark.prx.org/"
2727

2828
ENV["RAILS_ENV"] ||= "test"
2929
require_relative "../config/environment"

0 commit comments

Comments
 (0)