tests: py2 cleanup - remove subclassing of object

Type: refactor

Change-Id: I9096e3b473110350e1e8e5936e3c4c164f8969a7
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:
Paul Vinciguerra
2020-12-04 14:57:51 -05:00
committed by Ole Tr�an
parent d6f221789d
commit e061dad55e
21 changed files with 31 additions and 30 deletions

View File

@ -112,7 +112,7 @@ def check_core_path(logger, core_path):
" current core pattern is: %s" % corefmt)
class NumericConstant(object):
class NumericConstant:
desc_dict = {}
@ -131,7 +131,7 @@ class NumericConstant(object):
return ""
class Host(object):
class Host:
""" Generic test host "connected" to VPPs interface. """
@property