Merge "Replace abc.abstractproperty with property and abc.abstractmethod"

This commit is contained in:
Zuul 2023-04-21 16:05:40 +00:00 committed by Gerrit Code Review
commit bf5aed34cd
1 changed files with 2 additions and 1 deletions

View File

@ -133,7 +133,8 @@ class CommonIdentityTests(object):
self.stub_auth(json=token)
@abc.abstractproperty
@property
@abc.abstractmethod
def version(self):
"""The API version being tested."""