Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Better error message, fixes #607 #608

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/capybara/webkit/connection.rb
Expand Up @@ -16,7 +16,7 @@ def initialize(options = {})
if options.has_key?(:stderr)
@output_target = options[:stderr]
elsif options.has_key?(:stdout)
warn "[DEPRECATION] The `stdout` option is deprecated. Please use `stderr` instead."
warn "[DEPRECATION] The Capybara::Webkit::Connection `stdout` option is deprecated. Please use `stderr` instead."
@output_target = options[:stdout]
else
@output_target = $stderr
Expand Down