From a9694ba06acc9ea225f83bbd31f93cbedec4ff0c Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Thu, 10 Aug 2023 15:44:16 +0200 Subject: ArchiveOps: reduce verbosity in archive type enum --- test/end-to-end/just-mr/create_test_archives.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/end-to-end/just-mr/create_test_archives.cpp') diff --git a/test/end-to-end/just-mr/create_test_archives.cpp b/test/end-to-end/just-mr/create_test_archives.cpp index 3fa6759a..f7223410 100644 --- a/test/end-to-end/just-mr/create_test_archives.cpp +++ b/test/end-to-end/just-mr/create_test_archives.cpp @@ -120,8 +120,8 @@ auto main() -> int { auto anchor = FileSystemManager::ChangeDirectory(tmp_dir->GetPath()); // 2. create the archives wrt to current directory std::optional res{std::nullopt}; - res = ArchiveOps::CreateArchive( - ArchiveType::kArchiveTypeZip, "zip_repo.zip", "root"); + res = + ArchiveOps::CreateArchive(ArchiveType::Zip, "zip_repo.zip", "root"); if (res) { Logger::Log(LogLevel::Error, "Creating test zip archive failed with:\n{}", @@ -129,7 +129,7 @@ auto main() -> int { return 1; } res = ArchiveOps::CreateArchive( - ArchiveType::kArchiveTypeTarGz, "tgz_repo.tar.gz", "root"); + ArchiveType::TarGz, "tgz_repo.tar.gz", "root"); if (res) { Logger::Log(LogLevel::Error, "Creating test tar.gz archive failed with:\n{}", -- cgit v1.2.3