From 1657c5b7728484f519657783baf9ad5f6b6b1fb4 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Sat, 9 Mar 2024 18:11:29 +0000 Subject: [PATCH] t/find_stowed_path.t: Add a couple of missing spaces --- t/find_stowed_path.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/find_stowed_path.t b/t/find_stowed_path.t index 4a61427..d723e66 100755 --- a/t/find_stowed_path.t +++ b/t/find_stowed_path.t @@ -69,7 +69,7 @@ make_path("$TEST_DIR/target/stow2"); make_file("$TEST_DIR/target/stow2/.stow"); ($path, $stow_path, $package) = - $stow->find_stowed_path("$TEST_DIR/target/a/b/c","../../stow2/a/b/c"); + $stow->find_stowed_path("$TEST_DIR/target/a/b/c", "../../stow2/a/b/c"); is($path, "$TEST_DIR/target/stow2/a/b/c", "path"); is($stow_path, "$TEST_DIR/target/stow2", "stow path"); is($package, "a", "detect alternate stow directory"); @@ -77,7 +77,7 @@ is($package, "a", "detect alternate stow directory"); # Possible corner case with rogue symlink pointing to ancestor of # stow dir. ($path, $stow_path, $package) = - $stow->find_stowed_path("$TEST_DIR/target/a/b/c","../../.."); + $stow->find_stowed_path("$TEST_DIR/target/a/b/c", "../../.."); is($path, "", "path"); is($stow_path, "", "stow path"); is($package, "", "corner case - link points to ancestor of stow dir");