summaryrefslogtreecommitdiff
path: root/test/ruby/test_pack.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_pack.rb')
-rw-r--r--test/ruby/test_pack.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_pack.rb b/test/ruby/test_pack.rb
index 054fa82567..6ce16a2aa1 100644
--- a/test/ruby/test_pack.rb
+++ b/test/ruby/test_pack.rb
@@ -139,7 +139,7 @@ class TestPack < Test::Unit::TestCase
def test_integer_endian
s = [1].pack("s")
- assert_includes(["\0\1", "\1\0"], s)
+ assert_include(["\0\1", "\1\0"], s)
if s == "\0\1"
_integer_big_endian()
else