diff options
| author | Sergey Maranchuk <slav0nic@python.su> | 2020-04-18 12:37:18 +0300 |
|---|---|---|
| committer | Sergey Maranchuk <slav0nic@python.su> | 2020-04-19 00:53:53 +0300 |
| commit | cbf9de344bf0e6dd18263a0c8f505c37c0e354e2 (patch) | |
| tree | 2511a323435129c1ad67c9fb014f72c2e7a7a740 /tests/test_scripts | |
| parent | c7d9440a73dcf3970961c661855b1d92ee26ce86 (diff) | |
| download | pyramid-cbf9de344bf0e6dd18263a0c8f505c37c0e354e2.tar.gz pyramid-cbf9de344bf0e6dd18263a0c8f505c37c0e354e2.tar.bz2 pyramid-cbf9de344bf0e6dd18263a0c8f505c37c0e354e2.zip | |
Replace deprecated unittest alias assertEquals with assertEqual
https://docs.python.org/3/library/unittest.html#deprecated-aliases
Diffstat (limited to 'tests/test_scripts')
| -rw-r--r-- | tests/test_scripts/test_pserve.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_scripts/test_pserve.py b/tests/test_scripts/test_pserve.py index f2df0d83e..2feecf3e0 100644 --- a/tests/test_scripts/test_pserve.py +++ b/tests/test_scripts/test_pserve.py @@ -137,10 +137,10 @@ class TestPServeCommand(unittest.TestCase): finally: pserve.hupper = orig_hupper - self.assertEquals( + self.assertEqual( dummy_start_reloader.args, ('pyramid.scripts.pserve.main',) ) - self.assertEquals( + self.assertEqual( dummy_start_reloader.kwargs, { 'reload_interval': 1, |
