refactor: Pass rclone name as keyword argument

- Update rclone.new call to use named argument
This commit is contained in:
Mahmoud-Emad
2025-11-17 15:28:47 +02:00
parent f5c2b306b8
commit 9d79408931

View File

@@ -1,7 +1,7 @@
module rcloneclient
fn test_rclone_new() {
rclone := new('test_remote') or { panic(err) }
rclone := new(name: 'test_remote') or { panic(err) }
assert rclone.name == 'test_remote'
}