Skip to content
Prev Previous commit
Next Next commit
Fix import
  • Loading branch information
alimcmaster1 committed Dec 26, 2019
commit 51f51718e7ca6303f07ceeb31bd94e722acc5785
3 changes: 1 addition & 2 deletions pandas/tests/io/test_gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import platform

import numpy as np
from pandas_gbq.gbq import TableCreationError
import pytest
import pytz

Expand Down Expand Up @@ -198,7 +197,7 @@ def test_roundtrip(self, gbq_dataset):
"if_exists, expected_num_rows, expectation",
[
("append", 300, does_not_raise()),
("fail", 200, pytest.raises(TableCreationError)),
("fail", 200, pytest.raises(pandas_gbq.gbq.TableCreationError)),
("replace", 100, does_not_raise()),
],
)
Expand Down