diff --git a/test/fixtures/svn/working/svn b/test/fixtures/svn/working/svn index 5d72d7cd..910d01e7 100755 --- a/test/fixtures/svn/working/svn +++ b/test/fixtures/svn/working/svn @@ -3,7 +3,7 @@ # If the info command is called # AND the parent folder contains the .svn folder # THEN return the current path, similar to what `svn info` does -if [[ "$1" = "info" ]] && [[ -d "../.svn" ]]; then +if [[ "$1" == "info" ]] && [[ -d "../.svn" ]]; then echo "$PWD" fi