Skip to content

Commit

Permalink
Update integration test
Browse files Browse the repository at this point in the history
The number of lines in the output changes as there is 1 additional
line corresponding to the new table.
  • Loading branch information
kulakowski committed Nov 6, 2023
1 parent 1fae6cc commit eb5b557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/testing/tests/standalone_integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fn test_calling_a_reducer_with_private_table() {
let lines = module.read_log(Some(10)).await;
let lines: Vec<&str> = lines.trim().split('\n').collect();

assert_eq!(lines.len(), 8);
assert_eq!(lines.len(), 9);

let json: Value = serde_json::from_str(lines[6]).unwrap();
assert_eq!(json["message"], Value::String("Private, Tyrion!".to_string()));
Expand Down

0 comments on commit eb5b557

Please sign in to comment.