Skip to content

Commit 345e7dd

Browse files
committed
fixed test_example_project
1 parent ff5510f commit 345e7dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/doc_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ pub fn test_example_project() {
505505
//connect second step
506506
connect_workflow_nodes(&ConnectWorkflowArgs {
507507
name: name.clone(),
508-
from: "calculation/o_results".to_string(),
508+
from: "calculation/results".to_string(),
509509
to: "plot/results".to_string(),
510510
})
511511
.expect("Could not add input to plot/results");
@@ -531,7 +531,7 @@ pub fn test_example_project() {
531531
assert!(workflow.has_step("plot"));
532532
assert!(workflow.has_step_input("speakers"));
533533
assert!(workflow.has_step_input("population"));
534-
assert!(workflow.has_step_input("calculation/o_results"));
534+
assert!(workflow.has_step_input("calculation/results"));
535535
assert!(workflow.has_step_output("calculation/results"));
536536
assert!(workflow.has_step_output("plot/o_results"));
537537

0 commit comments

Comments
 (0)