s/blaze/bazel to fix failing test.

--
Change-Id: I1203f15e8e02373b062142c0631ff94f14bd437d
Reviewed-on: https://bazel-review.googlesource.com/c/6032/
MOS_MIGRATED_REVID=132870643
diff --git a/src/test/shell/integration/startup_options_test.sh b/src/test/shell/integration/startup_options_test.sh
index 464a0db..eb22455 100755
--- a/src/test/shell/integration/startup_options_test.sh
+++ b/src/test/shell/integration/startup_options_test.sh
@@ -27,7 +27,7 @@
 function test_different_startup_options() {
   pid=$(bazel info server_pid 2> $TEST_log)
   [[ -n $pid ]] || fail "Couldn't run bazel"
-  newpid=$(blaze --batch info server_pid 2> $TEST_log)
+  newpid=$(bazel --batch info server_pid 2> $TEST_log)
   expect_log "WARNING: Running B\\(azel\\|laze\\) server needs to be killed, because the startup options are different."
   [[ "$newpid" != "$pid" ]] || fail "pid $pid was the same!"
   kill -0 $pid 2> /dev/null && fail "$pid not dead"