From 470a6d62ae7cd58e89c81ab81e6e377472f0a128 Mon Sep 17 00:00:00 2001 From: ksss Date: Thu, 6 Nov 2025 00:08:14 +0900 Subject: [PATCH] Update FileUtils to v1.8.0 --- Gemfile.lock | 2 +- test/stdlib/FileUtils_test.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0775ad75b..6a5bcaa4d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -46,7 +46,7 @@ GEM ffi (1.17.2-aarch64-linux-gnu) ffi (1.17.2-arm64-darwin) ffi (1.17.2-x86_64-linux-gnu) - fileutils (1.7.3) + fileutils (1.8.0) goodcheck (3.1.0) marcel (>= 1.0, < 2.0) psych (>= 3.1, < 5.0) diff --git a/test/stdlib/FileUtils_test.rb b/test/stdlib/FileUtils_test.rb index d617aafce..437616c3f 100644 --- a/test/stdlib/FileUtils_test.rb +++ b/test/stdlib/FileUtils_test.rb @@ -360,8 +360,8 @@ def test_ln_sr FileUtils, :ln_sr, ToStr.new("src"), ToStr.new("dest"), noop: true assert_send_type "(ToPath, ToPath, noop: bool) -> void", FileUtils, :ln_sr, ToPath.new("src"), ToPath.new("dest"), noop: true - assert_send_type "(Array[String | ToStr | ToPath], String, noop: bool, verbose: bool, target_directory: false) -> void", - FileUtils, :ln_sr, ["src", ToStr.new("src"), ToStr.new("src")], "dest_dir", noop: true, verbose: false, target_directory: false + assert_send_type "(Array[String | ToStr | ToPath], String, noop: bool, verbose: bool, target_directory: true) -> void", + FileUtils, :ln_sr, ["src", ToStr.new("src"), ToStr.new("src")], "dest_dir", noop: true, verbose: false, target_directory: true end end