From 8e232523b2cc5a9bde8e1ac5517ccc129fd15c7d Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 7 Oct 2018 15:26:11 +0200 Subject: [PATCH] Fix: We dont have a subcommand "internal" anymore This subcommand was passed but it does not exist. Unfortunately, the tests did not fail... Signed-off-by: Matthias Beyer --- bin/core/imag-link/src/main.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/core/imag-link/src/main.rs b/bin/core/imag-link/src/main.rs index 8f839f90..cb40de5c 100644 --- a/bin/core/imag-link/src/main.rs +++ b/bin/core/imag-link/src/main.rs @@ -394,7 +394,7 @@ mod tests { #[test] fn test_link_modificates() { setup_logging(); - let rt = generate_test_runtime(vec!["internal", "test1", "test2"]) + let rt = generate_test_runtime(vec!["test1", "test2"]) .unwrap(); debug!("Runtime created"); @@ -423,7 +423,7 @@ mod tests { #[test] fn test_linking_links() { setup_logging(); - let rt = generate_test_runtime(vec!["internal", "test1", "test2"]) + let rt = generate_test_runtime(vec!["test1", "test2"]) .unwrap(); debug!("Runtime created"); @@ -452,7 +452,7 @@ mod tests { #[test] fn test_multilinking() { setup_logging(); - let rt = generate_test_runtime(vec!["internal", "test1", "test2"]) + let rt = generate_test_runtime(vec!["test1", "test2"]) .unwrap(); debug!("Runtime created"); @@ -482,7 +482,7 @@ mod tests { #[test] fn test_linking_more_than_two() { setup_logging(); - let rt = generate_test_runtime(vec!["internal", "test1", "test2", "test3"]) + let rt = generate_test_runtime(vec!["test1", "test2", "test3"]) .unwrap(); debug!("Runtime created"); @@ -519,7 +519,7 @@ mod tests { #[test] fn test_linking_links_unlinking_removes_links() { setup_logging(); - let rt = generate_test_runtime(vec!["internal", "test1", "test2"]) + let rt = generate_test_runtime(vec!["test1", "test2"]) .unwrap(); debug!("Runtime created"); @@ -555,7 +555,7 @@ mod tests { #[test] fn test_linking_and_unlinking_more_than_two() { setup_logging(); - let rt = generate_test_runtime(vec!["internal", "test1", "test2", "test3"]) + let rt = generate_test_runtime(vec!["test1", "test2", "test3"]) .unwrap(); debug!("Runtime created");