From 4f4ea371f9c76f120de9d7bbe194b422aea014c7 Mon Sep 17 00:00:00 2001 From: Paolo Invernizzi Date: Wed, 10 Jul 2024 15:17:47 +0200 Subject: [PATCH] QE: correct names for paramaters in kickstart API calls --- testsuite/features/support/namespaces/kickstart.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/features/support/namespaces/kickstart.rb b/testsuite/features/support/namespaces/kickstart.rb index d4ebff8bd74e..a25492bcfc67 100644 --- a/testsuite/features/support/namespaces/kickstart.rb +++ b/testsuite/features/support/namespaces/kickstart.rb @@ -21,7 +21,7 @@ def initialize(api_test) # @param kshost [String] The Kickstart hostname (of a server or proxy) used to construct the default download URL. # @return [Object] The result of the 'kickstart.profile.createProfile' API call. def create_profile(name, kstreelabel, kshost) - @test.call('kickstart.profile.createProfile', sessionKey: @test.token, profileLabel: name, vmType: 'none', kickstartableTreeLabel: kstreelabel, kickstartHost: kshost, rootPassword: 'linux', updateType: 'all') + @test.call('kickstart.profile.createProfile', sessionKey: @test.token, profileLabel: name, virtualizationType: 'none', kickstartableTreeLabel: kstreelabel, kickstartHost: kshost, rootPassword: 'linux', updateType: 'all') end # Import a raw kickstart file into #product(). @@ -31,7 +31,7 @@ def create_profile(name, kstreelabel, kshost) # @param filename [String] Contents of the kickstart file to import. def create_profile_using_import_file(name, kstreelabel, filename) file_content = File.read(filename) - @test.call('kickstart.importRawFile', sessionKey: @test.token, profileLabel: name, vmType: 'none', kickstartableTreeLabel: kstreelabel, kickstartFileContents: file_content) + @test.call('kickstart.importRawFile', sessionKey: @test.token, profileLabel: name, virtualizationType: 'none', kickstartableTreeLabel: kstreelabel, kickstartFileContents: file_content) end end