From 088038eeae449ee1930b695151813b6c1fb177e2 Mon Sep 17 00:00:00 2001 From: Matti Remes Date: Thu, 25 Jan 2018 22:17:32 +0200 Subject: [PATCH] edit test numbering --- pandas_gbq/tests/test_gbq.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandas_gbq/tests/test_gbq.py b/pandas_gbq/tests/test_gbq.py index 55e58973..056f360f 100644 --- a/pandas_gbq/tests/test_gbq.py +++ b/pandas_gbq/tests/test_gbq.py @@ -1426,7 +1426,7 @@ def test_upload_data_with_valid_user_schema(self): # Issue #46; tests test scenarios with user-provided # schemas df = tm.makeMixedDataFrame() - test_id = "15" + test_id = "18" test_schema = [{'name': 'A', 'type': 'FLOAT'}, {'name': 'B', 'type': 'FLOAT'}, {'name': 'C', 'type': 'STRING'}, @@ -1441,7 +1441,7 @@ def test_upload_data_with_valid_user_schema(self): def test_upload_data_with_invalid_user_schema_raises_error(self): df = tm.makeMixedDataFrame() - test_id = "16" + test_id = "19" test_schema = [{'name': 'A', 'type': 'FLOAT'}, {'name': 'B', 'type': 'FLOAT'}, {'name': 'C', 'type': 'FLOAT'}, @@ -1454,7 +1454,7 @@ def test_upload_data_with_invalid_user_schema_raises_error(self): def test_upload_data_with_missing_schema_fields_raises_error(self): df = tm.makeMixedDataFrame() - test_id = "16" + test_id = "20" test_schema = [{'name': 'A', 'type': 'FLOAT'}, {'name': 'B', 'type': 'FLOAT'}, {'name': 'C', 'type': 'FLOAT'}]