From e119ba8f1418d6a6babd8bb8af5d85e66f8b1b61 Mon Sep 17 00:00:00 2001 From: itiB Date: Thu, 7 Apr 2022 01:24:26 +0900 Subject: [PATCH] Fix: test file's path was incorrect --- src/options/level_tuning.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options/level_tuning.rs b/src/options/level_tuning.rs index 94c9aef8..cc5e8adb 100644 --- a/src/options/level_tuning.rs +++ b/src/options/level_tuning.rs @@ -145,7 +145,7 @@ mod tests { level: high "#; - let path = "test_files/rules/level_tuning_sample.yml"; + let path = "test_files/rules/level_tuning.txt"; let mut file = File::create(path).unwrap(); let buf = rule_str.as_bytes(); file.write_all(buf).unwrap();