Skip to content

Commit 51f5171

Browse files
committed
Fix import
1 parent 3e124a2 commit 51f5171

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/tests/io/test_gbq.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import platform
55

66
import numpy as np
7-
from pandas_gbq.gbq import TableCreationError
87
import pytest
98
import pytz
109

@@ -198,7 +197,7 @@ def test_roundtrip(self, gbq_dataset):
198197
"if_exists, expected_num_rows, expectation",
199198
[
200199
("append", 300, does_not_raise()),
201-
("fail", 200, pytest.raises(TableCreationError)),
200+
("fail", 200, pytest.raises(pandas_gbq.gbq.TableCreationError)),
202201
("replace", 100, does_not_raise()),
203202
],
204203
)

0 commit comments

Comments
 (0)