Skip to content

Commit 9ebacf9

Browse files
committed
Added asynchronous combinators
1 parent 2a59b7a commit 9ebacf9

File tree

2 files changed

+484
-30
lines changed

2 files changed

+484
-30
lines changed

src/runtime/my_little_runtime.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ mod tests {
772772
let x = vec![0.into(), 1.into(), 2.into()];
773773
// TODO: Use the real test values
774774
// let e = vec!["x + 1".into(), "x + 2".into(), "x + 3".into()];
775-
let e = vec!["x + 1".into(), Value::Deferred, Value::Deferred];
775+
let e = vec!["x + 1".into(), Value::NoVal, Value::NoVal];
776776
let input_streams = BTreeMap::from([("x".into(), x), ("e".into(), e)]);
777777
let mut output_handler = Box::new(ManualOutputHandler::new(
778778
executor.clone(),

0 commit comments

Comments
 (0)