diff options
Diffstat (limited to 'tests/variable/dir-path/buildfile')
-rw-r--r-- | tests/variable/dir-path/buildfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/variable/dir-path/buildfile b/tests/variable/dir-path/buildfile index c6fdb46..5c99f07 100644 --- a/tests/variable/dir-path/buildfile +++ b/tests/variable/dir-path/buildfile @@ -27,7 +27,7 @@ print [strings] -I $y print -I $y/baz print -z = [strings] "$x" # Re-typed. +z = [strings] $x # Re-typed. print $z print @@ -37,9 +37,9 @@ r = [dir_path] / print $r/foo r += foo -print [strings] "$r" +print [strings] $r r += bar -print [strings] "$r" +print [strings] $r ./: |