Skip to content

Commit

Permalink
fix failing network test
Browse files Browse the repository at this point in the history
  • Loading branch information
darmie committed May 7, 2024
1 parent 9ed2638 commit 2471f79
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file modified crates/zflow_js_runner/bin/libzflow_js_runner.dylib
Binary file not shown.
1 change: 1 addition & 0 deletions crates/zflow_runtime/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1809,6 +1809,7 @@ impl BaseNetwork for Network {

fn list_components(&mut self) -> Vec<String> {
let base_dir = self.workspace_dir.clone();
println!("dir {}", base_dir);
let par_iter = self.providers.par_iter_mut();
let mut components: Vec<String> = self
.native_components
Expand Down
2 changes: 1 addition & 1 deletion crates/zflow_runtime/network_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mod tests {
fn test_network() {
'given_a_zflo_network: {
let mut base_dir = std::env::current_dir().unwrap();
base_dir.push("test_components");
base_dir.push("../test_components");
let base_dir = base_dir.to_str().unwrap();

let split = Component::new(ComponentOptions {
Expand Down

0 comments on commit 2471f79

Please sign in to comment.