aboutsummaryrefslogtreecommitdiff
path: root/ruby/tests/stress.rb
diff options
context:
space:
mode:
authorChris Fallin <cfallin@c1f.net>2015-03-10 16:17:20 -0700
committerChris Fallin <cfallin@c1f.net>2015-03-10 16:17:20 -0700
commit9861c0d796f254f5575638e1c520db9d723b4fa3 (patch)
tree6cf4de2cbcb24d53b2475ed15d6a61a98712685c /ruby/tests/stress.rb
parenta5f7bb8ebb60d636c21c18ad2ffeda80e8f80a48 (diff)
parent27e2b57830c328b83286e055752bf92790587953 (diff)
downloadprotobuf-9861c0d796f254f5575638e1c520db9d723b4fa3.tar.gz
protobuf-9861c0d796f254f5575638e1c520db9d723b4fa3.tar.bz2
protobuf-9861c0d796f254f5575638e1c520db9d723b4fa3.zip
Merge pull request #146 from isaiah/jruby
protobuf support for jruby
Diffstat (limited to 'ruby/tests/stress.rb')
-rw-r--r--ruby/tests/stress.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby/tests/stress.rb b/ruby/tests/stress.rb
index 1bd768ed..082d5e22 100644
--- a/ruby/tests/stress.rb
+++ b/ruby/tests/stress.rb
@@ -30,7 +30,7 @@ module StressTest
100_000.times do
mnew = TestMessage.decode(data)
mnew = mnew.dup
- assert mnew.inspect == m.inspect
+ assert_equal mnew.inspect, m.inspect
assert TestMessage.encode(mnew) == data
end
end