summaryrefslogtreecommitdiff
path: root/src/VBox/ValidationKit/tests/api/tdTreeDepth1.py
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2022-07-21 15:32:41 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2022-07-21 15:32:41 +0000
commit033f5f20787032778d7fe5a0018048fb05c58a5d (patch)
treef0d14d6d2923a2620a0a77c252fc15b07c0709b1 /src/VBox/ValidationKit/tests/api/tdTreeDepth1.py
parentf72ee36f4f534e1b6edae42824ac58726aeb72ea (diff)
downloadVirtualBox-svn-033f5f20787032778d7fe5a0018048fb05c58a5d.tar.gz
Validation Kit/tests/api: Fixed failing test due to changed API for 7.0 [build fix].
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@95779 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/ValidationKit/tests/api/tdTreeDepth1.py')
-rwxr-xr-xsrc/VBox/ValidationKit/tests/api/tdTreeDepth1.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VBox/ValidationKit/tests/api/tdTreeDepth1.py b/src/VBox/ValidationKit/tests/api/tdTreeDepth1.py
index 3d108845fb0..2c1036e9a4b 100755
--- a/src/VBox/ValidationKit/tests/api/tdTreeDepth1.py
+++ b/src/VBox/ValidationKit/tests/api/tdTreeDepth1.py
@@ -123,7 +123,7 @@ class SubTstDrvTreeDepth1(base.SubTestDriverBase):
# re-register to test loading of settings
reporter.log('opening VM %s, testing config reading' % (sSettingsFile))
- if self.fpApiVer >= 7.0:
+ if self.oTstDrv.fpApiVer >= 7.0:
# Needs a password parameter since 7.0.
oVM = oVBox.openMachine(sSettingsFile, "")
else:
@@ -199,7 +199,7 @@ class SubTstDrvTreeDepth1(base.SubTestDriverBase):
# re-register to test loading of settings
reporter.log('opening VM %s, testing config reading' % (sSettingsFile))
- if self.fpApiVer >= 7.0:
+ if self.oTstDrv.fpApiVer >= 7.0:
# Needs a password parameter since 7.0.
oVM = oVBox.openMachine(sSettingsFile, "")
else: