From fb323dc75a1f7ab4b86339f2c898f81012af46ee Mon Sep 17 00:00:00 2001 From: Luca Visentin Date: Mon, 24 Jun 2024 14:02:47 +0200 Subject: [PATCH] fix: fix tests with new 'workflows' directory --- tests/test_run.rs | 6 +++--- tests/utils.rs | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/test_run.rs b/tests/test_run.rs index 849192a..38ac018 100644 --- a/tests/test_run.rs +++ b/tests/test_run.rs @@ -59,10 +59,10 @@ COPY . . fn get_default_files() -> Vec { vec![ File::new("kerblam.toml", TEST_KERBLAM_TOML), - File::new("src/pipes/make_pipe.makefile", TEST_MAKE_PIPE), - File::new("src/pipes/shell_pipe.sh", TEST_SHELL_PIPE), + File::new("src/workflows/make_pipe.makefile", TEST_MAKE_PIPE), + File::new("src/workflows/shell_pipe.sh", TEST_SHELL_PIPE), File::new("src/containers/default.dockerfile", TEST_DOCKER_FILE), - File::new("src/pipes/error.sh", TEST_ERROR_SHELL_PIPE), + File::new("src/workflows/error.sh", TEST_ERROR_SHELL_PIPE), ] } diff --git a/tests/utils.rs b/tests/utils.rs index e34d2cd..875b1f3 100644 --- a/tests/utils.rs +++ b/tests/utils.rs @@ -1,4 +1,3 @@ -use filetime::{set_file_mtime, FileTime}; use similar::{ChangeTag, TextDiff}; use std::env::set_var; use std::fmt::{Debug, Write};