Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeDupuis committed Sep 10, 2024
1 parent 56b7561 commit 6a9d316
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

require "bundler/gem_tasks"
require "minitest/test_task"
require 'azure_blob'
require_relative 'test/support/app_service_vpn'
require_relative 'test/support/azure_vm_vpn'
require "azure_blob"
require_relative "test/support/app_service_vpn"
require_relative "test/support/azure_vm_vpn"

Minitest::TestTask.create(:test_rails) do
self.test_globs = [ "test/rails/**/test_*.rb",
Expand Down Expand Up @@ -49,10 +49,10 @@ task :flush_test_container do |t|
account_name: ENV["AZURE_ACCOUNT_NAME"],
access_key: ENV["AZURE_ACCESS_KEY"],
container: ENV["AZURE_PRIVATE_CONTAINER"],
).delete_prefix ''
).delete_prefix ""
AzureBlob::Client.new(
account_name: ENV["AZURE_ACCOUNT_NAME"],
access_key: ENV["AZURE_ACCESS_KEY"],
container: ENV["AZURE_PUBLIC_CONTAINER"],
).delete_prefix ''
).delete_prefix ""
end

0 comments on commit 6a9d316

Please sign in to comment.