Skip to content

Commit

Permalink
Fix broken test suite.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdaum committed Oct 5, 2023
1 parent 9861e9f commit 468ccf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/kernel/testsuite/basic/basic_suite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async fn run_basic_test(test_dir: &str) {

// Frustratingly the individual test lines are not independent, so we need to run them in a
// single database.
let mut db = InMemObjectDatabase::new();
let mut db = InMemObjectDatabase::new().await;
load_db(&mut db).await;
for (line_num, (input, expected_output)) in zipped.enumerate() {
let evaluated = eval(&mut db, input).await;
Expand Down

0 comments on commit 468ccf1

Please sign in to comment.