aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/cloud/python/ops/bigquery_reader_ops_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/cloud/python/ops/bigquery_reader_ops_test.py')
-rw-r--r--tensorflow/contrib/cloud/python/ops/bigquery_reader_ops_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/cloud/python/ops/bigquery_reader_ops_test.py b/tensorflow/contrib/cloud/python/ops/bigquery_reader_ops_test.py
index 9acdb4b102..493b3c6f1b 100644
--- a/tensorflow/contrib/cloud/python/ops/bigquery_reader_ops_test.py
+++ b/tensorflow/contrib/cloud/python/ops/bigquery_reader_ops_test.py
@@ -46,7 +46,7 @@ _TABLE = "test-table"
# The values for rows are generated such that some columns have null values. The
# general formula here is:
# - The int64 column is present in every row.
-# - The string column is only avaiable in even rows.
+# - The string column is only available in even rows.
# - The float column is only available in every third row.
_ROWS = [[0, "s_0", 0.1], [1, None, None], [2, "s_2", None], [3, None, 3.1],
[4, "s_4", None], [5, None, None], [6, "s_6", 6.1], [7, None, None],