From 384579fd21732e7e07711d5c3f1f8372e2f3c4a3 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Wed, 26 Feb 2025 13:17:52 +0900 Subject: [PATCH] test/module.rb: rename to pass the spell check --- test/t/module.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/t/module.rb b/test/t/module.rb index 2f33a9d8f..c5d26df8a 100644 --- a/test/t/module.rb +++ b/test/t/module.rb @@ -565,8 +565,8 @@ end bug6662 = '[ruby-dev:45868]' c2 = labeled_class("c2", c) - anc = c2.ancestors - assert_equal([c2, m, c, Object], anc[0..anc.index(Object)], bug6662) + as = c2.ancestors + assert_equal([c2, m, c, Object], as[0..as.index(Object)], bug6662) end assert 'Module#prepend + Module#ancestors' do