Skip to content

Commit 21a6c7f

Browse files
committed
Fix integration tests
1 parent d4a0fff commit 21a6c7f

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
errors:
22
- Invalid destination type in 'hash' instruction
3+
outputs: []

synthesizer/tests/test_process_execute.rs

+4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ fn run_test(process: Process<CurrentNetwork>, test: &ProgramTest) -> serde_yaml:
6363
.as_sequence_mut()
6464
.unwrap()
6565
.push(serde_yaml::Value::String(err.to_string()));
66+
output.insert(
67+
serde_yaml::Value::String("outputs".to_string()),
68+
serde_yaml::Value::Sequence(serde_yaml::Sequence::new()),
69+
);
6670
return output;
6771
}
6872
}

0 commit comments

Comments
 (0)