Skip to content

Commit

Permalink
Fix variable definition
Browse files Browse the repository at this point in the history
  • Loading branch information
okynos committed Jan 28, 2025
1 parent 99610a3 commit 157f993
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/yam/agama/generate_agama_profile.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ use testapi qw(assert_script_run data_url get_required_var select_console script
use autoyast qw(expand_agama_profile);

sub run {
my profile_name = "profile.jsonnet";
my default_lib = get_test_data('yam/agama/auto/lib/default.libsonnet');
my storage_lib = get_test_data('yam/agama/auto/lib/storage.libsonnet');
my raw_profile = get_test_data('yam/agama/auto/sle.jsonnet');
my $profile_name = "profile.jsonnet";
my $default_lib = get_test_data('yam/agama/auto/lib/default.libsonnet');
my $storage_lib = get_test_data('yam/agama/auto/lib/storage.libsonnet');
my $raw_profile = get_test_data('yam/agama/auto/sle.jsonnet');

select_console 'root-console';
script_run("mkdir lib");
Expand Down

0 comments on commit 157f993

Please sign in to comment.