Skip to content

Commit 144cf53

Browse files
committed
Underscore unused vars
1 parent f527ec7 commit 144cf53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/token_operator_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ defmodule TokenOperatorTest do
101101
token = %{limit: nil}
102102
opts = [limit: 10]
103103

104-
function = fn token, options, extra_arg -> nil end
104+
function = fn _token, _options, _extra_arg -> nil end
105105

106106
assert_raise RuntimeError, "Function must have an arity of either 1 or 2", fn ->
107107
Operator.maybe(token, opts, :limit, function)

0 commit comments

Comments
 (0)