From 917c5de20e4e8dd52439728d4fa00a4d832c3dbb Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 28 Jun 2024 06:10:50 -0400 Subject: [PATCH] Fix compilation of integration tests without the patch_testing feature (cherry picked from commit 2e6b4d326499ebab0633262050a69efe4fd5fc08) --- tests/patching_test.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/patching_test.rs b/tests/patching_test.rs index ba336de..5a94c17 100644 --- a/tests/patching_test.rs +++ b/tests/patching_test.rs @@ -113,6 +113,7 @@ fn xivlauncher_install_patch(game_directory: &str, data_directory: &str, patch_n assert!(output. status.success()); } +#[cfg(feature = "patch_testing")] fn check_if_files_match(xivlauncher_dir: &str, physis_dir: &str) { let xivlauncher_files = fill_dir_hash(xivlauncher_dir); let physis_files = fill_dir_hash(physis_dir);