diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2022-07-21 15:32:41 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2022-07-21 15:32:41 +0000 |
commit | 033f5f20787032778d7fe5a0018048fb05c58a5d (patch) | |
tree | f0d14d6d2923a2620a0a77c252fc15b07c0709b1 /src/VBox/ValidationKit/tests/api/tdTreeDepth1.py | |
parent | f72ee36f4f534e1b6edae42824ac58726aeb72ea (diff) | |
download | VirtualBox-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-x | src/VBox/ValidationKit/tests/api/tdTreeDepth1.py | 4 |
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: |