summaryrefslogtreecommitdiff
path: root/test/webrick/test_server.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-09 12:16:38 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-09 12:16:38 +0000
commitb0132150c60a7e4c1fdb6820afa4cfdc5598f3a6 (patch)
treee6eb0c4b75eeb2ddbe1e052d926e8459cfdba5e7 /test/webrick/test_server.rb
parent070c310e87d04865da1b4f217432e22cfae5e380 (diff)
* test/webrick: Fix the argument order of assert_equal.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48342 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/webrick/test_server.rb')
-rw-r--r--test/webrick/test_server.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/webrick/test_server.rb b/test/webrick/test_server.rb
index e46494a132..fa7fc940ca 100644
--- a/test/webrick/test_server.rb
+++ b/test/webrick/test_server.rb
@@ -46,7 +46,7 @@ class TestWEBrickServer < Test::Unit::TestCase
server.start
end
- assert_equal(stopped, 1)
+ assert_equal(1, stopped)
assert_equal(1, log.length)
assert_match(/FATAL SignalException: SIGTERM/, log[0])
end
@@ -60,16 +60,16 @@ class TestWEBrickServer < Test::Unit::TestCase
}
TestWEBrick.start_server(Echo, config){|server, addr, port, log|
true while server.status != :Running
- assert_equal(started, 1, log.call)
- assert_equal(stopped, 0, log.call)
- assert_equal(accepted, 0, log.call)
+ assert_equal(1, started, log.call)
+ assert_equal(0, stopped, log.call)
+ assert_equal(0, accepted, log.call)
TCPSocket.open(addr, port){|sock| (sock << "foo\n").gets }
TCPSocket.open(addr, port){|sock| (sock << "foo\n").gets }
TCPSocket.open(addr, port){|sock| (sock << "foo\n").gets }
- assert_equal(accepted, 3, log.call)
+ assert_equal(3, accepted, log.call)
}
- assert_equal(started, 1)
- assert_equal(stopped, 1)
+ assert_equal(1, started)
+ assert_equal(1, stopped)
end
def test_daemon