Skip to content
Snippets Groups Projects
Commit 6b072fc3 authored by y.zobus's avatar y.zobus
Browse files

pipeline test

parent 39595c13
No related branches found
No related tags found
1 merge request!10Resolve "allow graph vizualization also to be Left-> Right and not only Top->Bottom"
Pipeline #7474 failed
......@@ -365,11 +365,11 @@ mod test {
}
#[test]
fn to_dot_with_node() {
let path = "files_for_testing/dot/to_dot_w_node_TB.dot";
let path = "./files_for_testing/dot/to_dot_w_node_TB.dot";
let file_content_tb = &mut "".to_owned();
let _ = File::open(path).unwrap().read_to_string(file_content_tb);
let path = "files_for_testing/dot/to_dot_w_node_LR.dot";
let path = "./files_for_testing/dot/to_dot_w_node_LR.dot";
let file_content_lr = &mut "".to_owned();
let _ = File::open(path).unwrap().read_to_string(file_content_lr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment