Skip to content

Commit

Permalink
Suppress warning of some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
parroty committed Jun 5, 2016
1 parent 29812db commit 43b68bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/handler_stub_mode_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ defmodule ExVCR.Adapter.HandlerStubModeTest do
test "request_body mismatches as regex" do
assert_raise ExVCR.InvalidRequestError, fn ->
use_cassette :stub, [url: 'http://localhost', method: :post, request_body: "~r/param3/", body: "Hello World"] do
{:ok, status_code, _headers, body} = :ibrowse.send_req('http://localhost', [], :post, 'param1=value1&param2=value2')
{:ok, _status_code, _headers, _body} = :ibrowse.send_req('http://localhost', [], :post, 'param1=value1&param2=value2')
end
end
end
Expand Down

0 comments on commit 43b68bc

Please sign in to comment.