summaryrefslogtreecommitdiff
path: root/src/tests/parsing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/parsing.rs')
-rw-r--r--src/tests/parsing.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/parsing.rs b/src/tests/parsing.rs
index 2e701ed..eb98a04 100644
--- a/src/tests/parsing.rs
+++ b/src/tests/parsing.rs
@@ -3,6 +3,7 @@ use crate::Configuration;
static TEST_DIR: &str = "../tests/parsing";
fn single_test(flat_name: &str, complex_name: &str) -> Result<(), Box<dyn std::error::Error>> {
+ println!("Running test {complex_name}...");
let config1 = Configuration::load_path(format!("{TEST_DIR}/{flat_name}"))?;
let config2 = Configuration::load_path(format!("{TEST_DIR}/{complex_name}"))?;
super::check_configs_equal(&config1, &config2)