From 752ae81ed168444380d265ebefcb3101ef68d890 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Thu, 15 Sep 2022 01:33:17 +0900 Subject: [PATCH] [ruby/irb] Refine assertion for failures https://github.com/ruby/irb/commit/fd047512b3 --- test/irb/test_history.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/irb/test_history.rb b/test/irb/test_history.rb index 98d24f0880..206970714a 100644 --- a/test/irb/test_history.rb +++ b/test/irb/test_history.rb @@ -170,7 +170,7 @@ module TestIRB io.class::HISTORY.concat(%w"line1 line2") history_file = IRB.rc_file("_history") - assert !File.file?(history_file) + assert_not_send [File, :file?, history_file] File.write(history_file, "line0\n") io.save_history assert_equal(%w"line0 line1 line2", File.read(history_file).split)