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 <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2018-10-07 15:26:11 +02:00
parent 388632d7ff
commit 8e232523b2

View file

@ -394,7 +394,7 @@ mod tests {
#[test] #[test]
fn test_link_modificates() { fn test_link_modificates() {
setup_logging(); setup_logging();
let rt = generate_test_runtime(vec!["internal", "test1", "test2"]) let rt = generate_test_runtime(vec!["test1", "test2"])
.unwrap(); .unwrap();
debug!("Runtime created"); debug!("Runtime created");
@ -423,7 +423,7 @@ mod tests {
#[test] #[test]
fn test_linking_links() { fn test_linking_links() {
setup_logging(); setup_logging();
let rt = generate_test_runtime(vec!["internal", "test1", "test2"]) let rt = generate_test_runtime(vec!["test1", "test2"])
.unwrap(); .unwrap();
debug!("Runtime created"); debug!("Runtime created");
@ -452,7 +452,7 @@ mod tests {
#[test] #[test]
fn test_multilinking() { fn test_multilinking() {
setup_logging(); setup_logging();
let rt = generate_test_runtime(vec!["internal", "test1", "test2"]) let rt = generate_test_runtime(vec!["test1", "test2"])
.unwrap(); .unwrap();
debug!("Runtime created"); debug!("Runtime created");
@ -482,7 +482,7 @@ mod tests {
#[test] #[test]
fn test_linking_more_than_two() { fn test_linking_more_than_two() {
setup_logging(); setup_logging();
let rt = generate_test_runtime(vec!["internal", "test1", "test2", "test3"]) let rt = generate_test_runtime(vec!["test1", "test2", "test3"])
.unwrap(); .unwrap();
debug!("Runtime created"); debug!("Runtime created");
@ -519,7 +519,7 @@ mod tests {
#[test] #[test]
fn test_linking_links_unlinking_removes_links() { fn test_linking_links_unlinking_removes_links() {
setup_logging(); setup_logging();
let rt = generate_test_runtime(vec!["internal", "test1", "test2"]) let rt = generate_test_runtime(vec!["test1", "test2"])
.unwrap(); .unwrap();
debug!("Runtime created"); debug!("Runtime created");
@ -555,7 +555,7 @@ mod tests {
#[test] #[test]
fn test_linking_and_unlinking_more_than_two() { fn test_linking_and_unlinking_more_than_two() {
setup_logging(); setup_logging();
let rt = generate_test_runtime(vec!["internal", "test1", "test2", "test3"]) let rt = generate_test_runtime(vec!["test1", "test2", "test3"])
.unwrap(); .unwrap();
debug!("Runtime created"); debug!("Runtime created");