Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:buycycle/bot into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
rauner committed Jan 31, 2024
2 parents ffb83de + 25518ba commit 48e5e82
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/assistant_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ async fn setup_test_app() -> axum::Router {
.await
.expect("Failed to create database pool for testing");
let db_pool = db.pool; // Extract the SqlitePool from the DB struct
// Create the files for the assistant.
let files = create_files("context", Vec::new()).await.expect("Failed to create files");
// Create the files for the assistant.
let files = create_files("context", Vec::new())
.await
.expect("Failed to create files");
// Create an assistant.
let assistant = create_assistant(
"Test",
Expand Down

0 comments on commit 48e5e82

Please sign in to comment.