Skip to content

Commit

Permalink
More test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
laf committed Oct 10, 2024
1 parent c51c4b9 commit e6e53b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion spec/source/csv_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Set :home_dir to make sure the OXIDIZED_HOME environment variable is not used
Oxidized::Config.load({ home_dir: '/cfg_path/' })

@source = Oxidized::CSV.new
@source = Oxidized::Source::CSV.new
end

it 'raises Oxidized::NoConfig when no config is provided' do
Expand Down
2 changes: 1 addition & 1 deletion spec/source/http_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Set :home_dir to make sure the OXIDIZED_HOME environment variable is not used
Oxidized::Config.load({ home_dir: '/cfg_path/' })

@source = Oxidized::HTTP.new
@source = Oxidized::Source::HTTP.new
end

it 'raises Oxidized::NoConfig when no config is provided' do
Expand Down
2 changes: 1 addition & 1 deletion spec/source/jsonfile_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Set :home_dir to make sure the OXIDIZED_HOME environment variable is not used
Oxidized::Config.load({ home_dir: '/cfg_path/' })

@source = Oxidized::JSONFile.new
@source = Oxidized::Source::JSONFile.new
end

it 'raises Oxidized::NoConfig when no config is provided' do
Expand Down
2 changes: 1 addition & 1 deletion spec/source/sql_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Set :home_dir to make sure the OXIDIZED_HOME environment variable is not used
Oxidized::Config.load({ home_dir: '/cfg_path/' })

@source = Oxidized::SQL.new
@source = Oxidized::Source::SQL.new
end

it 'raises Oxidized::NoConfig when no config is provided' do
Expand Down

0 comments on commit e6e53b4

Please sign in to comment.