Skip to content

Commit

Permalink
Fixup pyupgrade linter apply
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Lavigne <lavigne958@gmail.com>
  • Loading branch information
lavigne958 committed Jan 30, 2024
1 parent 90fef5f commit 1ea9e40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,6 @@ def test_client_export_spreadsheet(self):

res_values = bytes(res).decode("utf-8").strip("'").split(",")

self.assertEquals(
self.assertEqual(
values[0], res_values, "exported values are not the value initially set"
)
2 changes: 1 addition & 1 deletion tests/spreadsheet_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,6 @@ def test_export_spreadsheet(self):

res_values = bytes(res).decode("utf-8").strip("'").split(",")

self.assertEquals(
self.assertEqual(
values[0], res_values, "exported values are not the value initially set"
)

0 comments on commit 1ea9e40

Please sign in to comment.