Fix typo in run-instrumentation-tests-via-adb-shell.sh

Summary:
Small fix:

Fix typo in run-instrumentation-tests-via-adb-shell.sh. "reponse" is a misspelling of "response"
Closes https://github.com/facebook/react-native/pull/16408

Differential Revision: D6080538

Pulled By: hramos

fbshipit-source-id: 6fc4962fea3f52e1f384fcad3639626866fe131f
This commit is contained in:
mori-dev 2017-10-17 13:17:15 -07:00 committed by Facebook Github Bot
parent 400f5b7bc9
commit 52f9b3e516
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ def update():
# prevent CircleCI from killing the process for inactivity
while not done:
time.sleep(5)
print "Running in background. Waiting for 'adb' command reponse..."
print "Running in background. Waiting for 'adb' command response..."
t = threading.Thread(target=update)
t.dameon = True