diff options
author | Daniel Colson <danieljamescolson@gmail.com> | 2018-04-03 21:34:51 -0400 |
---|---|---|
committer | Daniel Colson <danieljamescolson@gmail.com> | 2018-04-03 22:35:49 -0400 |
commit | c1ceafc9d128b430f27d43d98369683c59c33021 (patch) | |
tree | 119aac63e2ff8970d18ef9e8d641a2c0c3e458f1 /actionpack/test/dispatch | |
parent | f88f5a457cb95dc22519aa33b527a73f198e92e8 (diff) | |
download | rails-c1ceafc9d128b430f27d43d98369683c59c33021.tar.gz rails-c1ceafc9d128b430f27d43d98369683c59c33021.tar.bz2 rails-c1ceafc9d128b430f27d43d98369683c59c33021.zip |
Autocorrect `refute` RuboCop violations
73e7aab behaved as expected on codeship, failing the build with
exactly these RuboCop violations. Hopefully `rubocop -a` will
have been enough to get a passing build!
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r-- | actionpack/test/dispatch/system_testing/server_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/system_testing/server_test.rb b/actionpack/test/dispatch/system_testing/server_test.rb index 95e411faf4..740e90a4da 100644 --- a/actionpack/test/dispatch/system_testing/server_test.rb +++ b/actionpack/test/dispatch/system_testing/server_test.rb @@ -17,7 +17,7 @@ class ServerTest < ActiveSupport::TestCase test "server is changed from `default` to `puma`" do Capybara.server = :default ActionDispatch::SystemTesting::Server.new.run - refute_equal Capybara.server, Capybara.servers[:default] + assert_not_equal Capybara.server, Capybara.servers[:default] end test "server is not changed to `puma` when is different than default" do |