From 2f928f9af2ea66c858e8aa6cc3099a3028b0f539 Mon Sep 17 00:00:00 2001 From: Olivier Bado-Faustin <12731381+Badatos@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:42:39 +0100 Subject: [PATCH] Replace remaining assertEquals by assertEqual --- .github/workflows/pod_dev.yml | 4 ++-- pod/recorder/tests/test_plugins.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pod_dev.yml b/.github/workflows/pod_dev.yml index 9576acbf61..a0b21c0536 100644 --- a/.github/workflows/pod_dev.yml +++ b/.github/workflows/pod_dev.yml @@ -6,13 +6,13 @@ on: push: branches: - develop - - pod_V4 + - dev_v4 - features/** - dependabot/** pull_request: branches: - develop - - pod_V4 + - dev_v4 workflow_dispatch: env: diff --git a/pod/recorder/tests/test_plugins.py b/pod/recorder/tests/test_plugins.py index 1839bd303e..fe437575a4 100644 --- a/pod/recorder/tests/test_plugins.py +++ b/pod/recorder/tests/test_plugins.py @@ -136,7 +136,7 @@ def test_change_title(self) -> None: change_title(recording, title) recording = Recording.objects.get(id=1) - self.assertEquals(recording.title, title) + self.assertEqual(recording.title, title) print(" ---> test_change_title of PluginVideoTestCase: OK!") def test_change_user(self) -> None: