Skip to content

Commit

Permalink
Fix var ref
Browse files Browse the repository at this point in the history
  • Loading branch information
jm-mailosaur committed Aug 1, 2024
1 parent 7907569 commit 7e414f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/errors_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class ErrorsTest < Test::Unit::TestCase
@api_key = ENV['MAILOSAUR_API_KEY']
@base_url = ENV['MAILOSAUR_BASE_URL']

raise ArgumentError, 'Missing necessary environment variables - refer to README.md' if @@api_key.nil?
raise ArgumentError, 'Missing necessary environment variables - refer to README.md' if @api_key.nil?
end

should 'Unauthorized' do
Expand Down

0 comments on commit 7e414f6

Please sign in to comment.