Skip to content

Commit

Permalink
edit test numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
Matti Remes committed Jan 25, 2018
1 parent 2783f7c commit 088038e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pandas_gbq/tests/test_gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'},
Expand All @@ -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'},
Expand All @@ -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'}]
Expand Down

0 comments on commit 088038e

Please sign in to comment.