Skip to content
Snippets Groups Projects

Cast ENV['RSPEC_PROFILING_POSTGRES_URL'] to symbol in establish_connection call …

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
module RspecProfilingExt
module PSQL
def establish_connection
::RspecProfiling::Collectors::PSQL::Result.establish_connection(ENV['RSPEC_PROFILING_POSTGRES_URL'])
::RspecProfiling::Collectors::PSQL::Result.establish_connection(ENV['RSPEC_PROFILING_POSTGRES_URL'].to_sym)
end
end
Loading