--- a/test/cases/search.bats
+++ b/test/cases/search.bats
@@ -1,45 +1,45 @@
 @test "Has valid help output" {
-  run ./jp --help
+  run $JP --help
   [ "$status" -eq 0 ]
   echo $output | grep "\-\-filename"
 }
 
 @test "Can display version" {
-  run ./jp --version
+  run $JP --version
   [ "$status" -eq 0 ]
 }
 
 @test "Can search basic expression" {
-  output=$(echo '{"foo": "bar"}' | ./jp foo)
+  output=$(echo '{"foo": "bar"}' | $JP foo)
   [ "$output" == "\"bar\"" ]
 }
 
 @test "Can search subexpr expression" {
-  output=$(echo '{"foo": {"bar": "baz"}}' | ./jp foo.bar)
+  output=$(echo '{"foo": {"bar": "baz"}}' | $JP foo.bar)
   [ "$output" == "\"baz\"" ]
 }
 
 @test "Can read input from file" {
   echo '{"foo": "bar"}' > "$BATS_TMPDIR/input.json"
-  run ./jp -f "$BATS_TMPDIR/input.json" foo
+  run $JP -f "$BATS_TMPDIR/input.json" foo
   [ "$output" == "\"bar\"" ]
 }
 
 @test "Can print result unquoted" {
-  output=$(echo '{"foo": "bar"}' | ./jp -u foo)
+  output=$(echo '{"foo": "bar"}' | $JP -u foo)
   [ "$output" == "bar" ]
 }
 
 @test "Bad JMESPath expression has non zero rc" {
   echo '{"foo": "bar"}' > "$BATS_TMPDIR/input.json"
-  run ./jp -f "$BATS_TMPDIR/input.json" "bax[expre]ssion"
+  run $JP -f "$BATS_TMPDIR/input.json" "bax[expre]ssion"
   [ "$status" -eq 1 ]
 }
 
 @test "Large numbers are not printed with scientific notation" {
   skip
   echo '{"foo": 47268765}' > "$BATS_TMPDIR/input.json"
-  run ./jp -f "$BATS_TMPDIR/input.json" "foo"
+  run $JP -f "$BATS_TMPDIR/input.json" "foo"
   [ "$status" -eq 0 ]
   [ "$output" == "47268765" ]
 }
@@ -47,12 +47,12 @@
 @test "Can accept expression from file" {
   echo 'foo.bar' > "$BATS_TMPDIR/expr"
   echo '{"foo": {"bar": "baz"}}' > "$BATS_TMPDIR/input.json"
-  run ./jp -u -f "$BATS_TMPDIR/input.json" -e "$BATS_TMPDIR/expr"
+  run $JP -u -f "$BATS_TMPDIR/input.json" -e "$BATS_TMPDIR/expr"
   [ "$output" == "baz" ]
 }
 
 @test "Can pretty print expr AST" {
-  run ./jp --ast "foo"
+  run $JP --ast "foo"
   expected='
 ASTField {
   value: "foo"
@@ -65,7 +65,7 @@
 @test "Can sort int array" {
   echo '[2,1,3,5,4]' > "$BATS_TMPDIR/input.json"
   echo "sort(@) | map(&to_string(@), @) | join('', @)" > "$BATS_TMPDIR/expr"
-  run ./jp -u -f "$BATS_TMPDIR/input.json" -e "$BATS_TMPDIR/expr"
+  run $JP -u -f "$BATS_TMPDIR/input.json" -e "$BATS_TMPDIR/expr"
   [ "$status" -eq 0 ]
   [ "$output" == "12345" ]
 }
