From b23a52e88bf0301ac7188f6b5e63794baa2d02bb Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 7 Aug 2024 10:33:06 -0400 Subject: [PATCH] check_default_fonts: use repo_setup before using dnf Signed-off-by: Adam Williamson --- tests/check_default_fonts.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/check_default_fonts.pm b/tests/check_default_fonts.pm index bf2f8024..80fbc9d5 100644 --- a/tests/check_default_fonts.pm +++ b/tests/check_default_fonts.pm @@ -14,6 +14,8 @@ sub run { # we need to install the check tool $self->root_console(tty => 3); script_run("loadkeys us"); + # repo setup before using dnf + repo_setup(); assert_script_run("dnf -y install fontquery"); # and give the user tty perms for later assert_script_run("chmod 666 /dev/${serialdev}");