aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar kpayson64 <kpayson@google.com>2016-07-19 14:16:30 -0700
committerGravatar GitHub <noreply@github.com>2016-07-19 14:16:30 -0700
commitc37a5a38780b8b3def35d6cb6ad14f8d5b983c86 (patch)
tree612ad5ab1477f3dda19ee637ed3e240d9cef2ed4
parente514158ccc3440daa4d9bd490fbe2ccd49e4068a (diff)
parent6660c110dfc842314ba1ef063d8fcbe3f79dd180 (diff)
Merge pull request #7431 from thinkerou/fix_spell_error
Python: fix spell error by pyflakes found
-rwxr-xr-xtools/gcp/stress_test/stress_test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gcp/stress_test/stress_test_utils.py b/tools/gcp/stress_test/stress_test_utils.py
index b821fc8fcc..be50af3184 100755
--- a/tools/gcp/stress_test/stress_test_utils.py
+++ b/tools/gcp/stress_test/stress_test_utils.py
@@ -121,7 +121,7 @@ class BigQueryHelper:
if not page['jobComplete']:
print('TIMEOUT ERROR: The query %s timed out. Current timeout value is'
' %d msec. Returning False (i.e assuming there are no failures)'
- ) % (query, timeoout_msec)
+ ) % (query, timeout_msec)
return False
num_failures = int(page['totalRows'])