summaryrefslogtreecommitdiffstats
path: root/test/util.py
diff options
context:
space:
mode:
authorPaul Vinciguerra <pvinci@vinciconsulting.com>2020-12-04 14:57:51 -0500
committerOle Tr�an <otroan@employees.org>2020-12-07 08:17:10 +0000
commite061dad55e75ea5d5db20ceda28f557971dd9483 (patch)
tree178f317491a8c8b6f525a0d865cf45625fa36274 /test/util.py
parentd6f221789d58374db4ea5368dde5e83f72e842c0 (diff)
tests: py2 cleanup - remove subclassing of object
Type: refactor Change-Id: I9096e3b473110350e1e8e5936e3c4c164f8969a7 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/util.py')
-rw-r--r--test/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/util.py b/test/util.py
index b691deb642f..e21fdb81026 100644
--- a/test/util.py
+++ b/test/util.py
@@ -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