Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions test/stdlib/FileUtils_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down