Skip to content

Commit

Permalink
Replace remaining assertEquals by assertEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
Badatos committed Dec 9, 2024
1 parent 5115cb4 commit 2f928f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pod_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pod/recorder/tests/test_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2f928f9

Please sign in to comment.