aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/tests/stress.rb
diff options
context:
space:
mode:
authorGravatar Isaiah Peng <issaria@gmail.com>2014-12-24 15:48:41 +0100
committerGravatar Isaiah Peng <issaria@gmail.com>2015-03-10 23:14:08 +0100
commit27e2b57830c328b83286e055752bf92790587953 (patch)
tree6cf4de2cbcb24d53b2475ed15d6a61a98712685c /ruby/tests/stress.rb
parenta5f7bb8ebb60d636c21c18ad2ffeda80e8f80a48 (diff)
add jruby support by protobuf-java reflection API
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