Skip to content

Commit cb4785e

Browse files
committed
Replacing AssertEqual
1 parent 71b7a63 commit cb4785e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_gbq/tests/test_gbq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ def test_upload_subset_columns_if_table_exists_append(self):
10931093
.format(self.destination_table + test_id),
10941094
project_id=_get_project_id(),
10951095
private_key=_get_private_key_path())
1096-
self.assertEqual(result['num_rows'][0], test_size * 2)
1096+
assert result['num_rows'][0] == test_size * 2
10971097

10981098
def test_upload_data_if_table_exists_replace(self):
10991099
test_id = "4"

0 commit comments

Comments
 (0)