Skip to content

Commit

Permalink
DIME-OPS: use assertEqual instead of assertEquals
Browse files Browse the repository at this point in the history
Co-authored-by: Gergely Rimoczi <[email protected]>
  • Loading branch information
tade82 and Gergely Rimoczi committed Jun 3, 2024
1 parent aeebdaa commit d077a4e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
astroid==3.2.2
cachetools==5.3.3
certifi==2024.6.2
charset-normalizer==3.3.2
dill==0.3.8
google-api-core==2.19.0
google-api-python-client==2.131.0
google-auth==2.29.0
Expand All @@ -20,12 +22,16 @@ grpcio-status==1.62.2
httplib2==0.22.0
idna==3.7
iniconfig==2.0.0
isort==5.13.2
mccabe==0.7.0
packaging==24.0
platformdirs==4.2.2
pluggy==1.5.0
proto-plus==1.23.0
protobuf==4.25.3
pyasn1==0.6.0
pyasn1_modules==0.4.0
pylint==3.2.2
pyparsing==3.1.2
pytest==8.2.1
python-dateutil==2.9.0.post0
Expand All @@ -35,5 +41,6 @@ setuptools==70.0.0
six==1.16.0
sqlparse==0.5.0
tenacity==8.3.0
tomlkit==0.12.5
uritemplate==4.1.1
urllib3==2.2.1
2 changes: 1 addition & 1 deletion tests/integration/bigquery/it_ems_bigquery_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def test_run_async_load_job_whenLoadingFileWithHeader_headerIsSkiped(self):

result = self.client.run_sync_query(query=query)
expected = [{"COLUMN": "ROW"}]
self.assertEquals(expected, list(result))
self.assertEqual(expected, list(result))

def test_dataset_exists_WhenDatasetNotExists(self):
dataset_id = self.__generate_test_name("dataset")
Expand Down

0 comments on commit d077a4e

Please sign in to comment.