Skip to content

Commit e25d672

Browse files
authored
Fix typos (elixir-wallaby#621)
1 parent 49943db commit e25d672

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Other goodies include improved test helpers, a cookies API and handling for JS-d
241241
- Removed deprecated versions of `text`
242242
- Removed deprecated `click_link`
243243
- Removed deprecated `click_button`
244-
- Removed depreacted `choose`
244+
- Removed deprecated `choose`
245245

246246
### Features
247247

integration_test/cases/browser/button_up_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule Wallaby.Integration.Browser.ButtonUpTest do
2020
end
2121
end
2222

23-
describe "button_down/2 releases previously held mouse button if cursor is moved from the position where the buton was pressed" do
23+
describe "button_down/2 releases previously held mouse button if cursor is moved from the position where the button was pressed" do
2424
test "for left button", %{page: page} do
2525
move_cursor_then_button_up_test(page, :left, "Left")
2626
end

test/support/utils.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Wallaby.TestSupport.Utils do
44
"""
55

66
@doc """
7-
Repeatedly execute a closure, with a timeout. Useful for assertions that are relying on asyncronous operations.
7+
Repeatedly execute a closure, with a timeout. Useful for assertions that are relying on asynchronous operations.
88
"""
99
def attempt_with_timeout(doer, timeout \\ 100),
1010
do: attempt_with_timeout(doer, now_in_milliseconds(), timeout)

test/wallaby/http_client_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ defmodule Wallaby.HTTPClientTest do
5656
end
5757

5858
test "with an obscure status code", %{bypass: bypass} do
59-
expected_message = "message from an obsure error"
59+
expected_message = "message from an obscure error"
6060

6161
Bypass.expect(bypass, fn conn ->
6262
send_json_resp(conn, 200, %{

0 commit comments

Comments
 (0)