diff options
| author | Glandos <bugs-github@antipoul.fr> | 2021-06-09 23:56:41 +0200 |
|---|---|---|
| committer | Glandos <bugs-github@antipoul.fr> | 2021-06-10 00:09:59 +0200 |
| commit | c62965d4bfffa6b1f33d34b949431d8a2055af71 (patch) | |
| tree | 97309ecf27d12215bd898aa348dee0dcb08f3871 /ihatemoney/tests | |
| parent | 44fa1af375aaaeb3f1b105871951940fa0fa37c1 (diff) | |
| download | ihatemoney-mirror-c62965d4bfffa6b1f33d34b949431d8a2055af71.zip ihatemoney-mirror-c62965d4bfffa6b1f33d34b949431d8a2055af71.tar.gz ihatemoney-mirror-c62965d4bfffa6b1f33d34b949431d8a2055af71.tar.bz2 | |
fix basic deprecation warnings
Diffstat (limited to 'ihatemoney/tests')
| -rw-r--r-- | ihatemoney/tests/main_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ihatemoney/tests/main_test.py b/ihatemoney/tests/main_test.py index d495f3a..2e7742f 100644 --- a/ihatemoney/tests/main_test.py +++ b/ihatemoney/tests/main_test.py @@ -95,7 +95,7 @@ class CommandTestCase(BaseTestCase): def test_demo_project_deletion(self): self.create_project("demo") - self.assertEquals(models.Project.query.get("demo").name, "demo") + self.assertEqual(models.Project.query.get("demo").name, "demo") runner = self.app.test_cli_runner() runner.invoke(delete_project, "demo") |
