More deprecation warnings in test suite

This commit is contained in:
Kovid Goyal 2021-06-24 09:25:53 +05:30
parent c21a482080
commit 785d74bda4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -478,8 +478,8 @@ class LegacyTest(BaseTest):
obj, nobj = getattr(db, attr), getattr(ndb, attr)
if attr not in SKIP_ARGSPEC:
try:
argspec = inspect.getargspec(obj)
nargspec = inspect.getargspec(nobj)
argspec = inspect.getfullargspec(obj)
nargspec = inspect.getfullargspec(nobj)
except (TypeError, ValueError):
pass
else: