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:
parent
388632d7ff
commit
8e232523b2
1 changed files with 6 additions and 6 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue