We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b6a005 commit 8225be5Copy full SHA for 8225be5
1 file changed
crates/hm/tests/runner_dispatch.rs
@@ -36,6 +36,8 @@ pub mod common;
36
37
use std::collections::BTreeMap;
38
39
+use daggy::petgraph::visit::IntoNodeReferences;
40
+
41
use common::fixtures;
42
use harmont_cli::orchestrator::graph::Graph;
43
use harmont_cli::plugin::{PluginRegistry, RegistryConfig};
@@ -88,7 +90,6 @@ async fn runner_field_dispatches_to_named_plugin() {
88
90
// Sanity check: the graph must preserve `runner` from the IR.
89
91
// This is the cheap fast-fail; the dispatch check below is the
92
// load-bearing one.
- use daggy::petgraph::visit::IntoNodeReferences;
93
let (_, first_transition) = graph.dag().graph().node_references()
94
.find(|(_, t)| t.step.key == "fs-step")
95
.unwrap();
0 commit comments