Skip to content

Commit 20e882d

Browse files
committed
remove unnecesary guards
1 parent 4d030f1 commit 20e882d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

examples/ruby/spec/actions_api/keys_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
let(:driver) { start_session }
77
let(:wait) { Selenium::WebDriver::Wait.new(timeout: 2) }
88

9-
it 'key down', except: {platforn: :linux, reason: 'it only fails on the linux pipeline'} do
9+
it 'key down' do
1010
driver.get 'https://www.selenium.dev/selenium/web/single_text_input.html'
1111
wait.until { driver.find_element(id: 'textInput').attribute('autofocus') }
1212

examples/ruby/spec/drivers/remote_webdriver_spec.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
require 'spec_helper'
44
require 'selenium/server'
55

6-
RSpec.describe 'Remote WebDriver', except: {platform: :macosx,
7-
reason: 'it only fail due to the server in the mac pipeline'} do
6+
RSpec.describe 'Remote WebDriver' do
87
let(:target_directory) { File.join(Dir.tmpdir, SecureRandom.uuid) }
98
let(:wait) { Selenium::WebDriver::Wait.new(timeout: 2) }
109
let(:server) do

0 commit comments

Comments
 (0)