Skip to content

Commit 8867f96

Browse files
committed
🚧 gucc: fix mtab test
1 parent 3e09d7c commit 8867f96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎gucc/tests/unit-mtab.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ TEST_CASE("mtab test")
121121
SECTION("live iso system")
122122
{
123123
static constexpr std::string_view filename{"/tmp/mtab.conf"};
124-
REQUIRE(file_utils::create_file_for_overwrite(filename, MTAB_LIVE_ISO_TEST));
124+
REQUIRE(gucc::file_utils::create_file_for_overwrite(filename, MTAB_LIVE_ISO_TEST));
125125

126126
const auto& mtab_entries = gucc::mtab::parse_mtab("/tmp/calamares-root-q_z5rdlx"sv, filename);
127127
REQUIRE(mtab_entries.has_value());
@@ -164,7 +164,7 @@ TEST_CASE("mtab test")
164164
SECTION("empty file")
165165
{
166166
static constexpr std::string_view filename{"/tmp/mtab.conf"};
167-
REQUIRE(file_utils::create_file_for_overwrite(filename, ""));
167+
REQUIRE(gucc::file_utils::create_file_for_overwrite(filename, ""));
168168

169169
const auto& mtab_entries = gucc::mtab::parse_mtab("/tmp/calamares-root-q_z5rdlx"sv, filename);
170170
REQUIRE(!mtab_entries.has_value());

0 commit comments

Comments
 (0)