Skip to content

Commit

Permalink
Revert change made by a silly mistake
Browse files Browse the repository at this point in the history
5b378c mistakenly removed this argument
  • Loading branch information
p0deje committed Dec 1, 2017
1 parent 6376733 commit a8bdb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rb/spec/integration/selenium/webdriver/window_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module WebDriver
target_width = size.width - 20
target_height = size.height - 20

window.size = Dimension.new(target_height)
window.size = Dimension.new(target_width, target_height)

new_size = window.size
expect(new_size.width).to eq(target_width)
Expand Down

0 comments on commit a8bdb37

Please sign in to comment.