Skip to content

Commit

Permalink
[rb] missed updating a couple more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jan 11, 2024
1 parent 91be548 commit e1864a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module Chrome
after { service_manager.stop }

it 'auto uses chromedriver' do
service.executable_path = DriverFinder.path(Options.new, described_class)
service.executable_path = DriverFinder.new(Options.new, described_class.new).driver_path

expect(service_manager.uri).to be_a(URI)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module Edge
after { service_manager.stop }

it 'auto uses edgedriver' do
service.executable_path = DriverFinder.path(Options.new, described_class)
service.executable_path = DriverFinder.new(Options.new, described_class.new).driver_path

expect(service_manager.uri).to be_a(URI)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module Firefox
after { service_manager.stop }

it 'auto uses geckodriver' do
service.executable_path = DriverFinder.path(Options.new, described_class)
service.executable_path = DriverFinder.new(Options.new, described_class.new).driver_path

expect(service_manager.uri).to be_a(URI)
end
Expand Down

0 comments on commit e1864a8

Please sign in to comment.