summaryrefslogtreecommitdiff
path: root/test/test_plugins.py
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2023-03-04 15:53:29 +0100
committerMarcel Hellkamp <marc@gsites.de>2023-03-04 16:32:26 +0100
commitc04c794ca9b8004ae3156c7ccef1255b31afa495 (patch)
tree1a3d4f6c0301badaf1e9e9c492dd1cd6bf45577b /test/test_plugins.py
parent486898d0bc16b21f1db95529369644f14399b89b (diff)
downloadbottle-c04c794ca9b8004ae3156c7ccef1255b31afa495.tar.gz
Reduce deprectation warnings during tests
Diffstat (limited to 'test/test_plugins.py')
-rw-r--r--test/test_plugins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_plugins.py b/test/test_plugins.py
index aec5042..f2da3f9 100644
--- a/test/test_plugins.py
+++ b/test/test_plugins.py
@@ -194,7 +194,7 @@ class TestPluginAPI(tools.ServerTestBase):
def __call__(self, func): return func
def setup(self, app): self.app = app
plugin = self.app.install(Plugin())
- self.assertEquals(getattr(plugin, 'app', None), self.app)
+ self.assertEqual(getattr(plugin, 'app', None), self.app)
def test_close(self):
class Plugin(object):