Skip to content

Commit

Permalink
test: do not clear db
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuthor committed Nov 4, 2024
1 parent a4d3e91 commit 80e6733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crate/test_server/src/test_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fn redis_db_config() -> DBConfig {
trace!("TESTS: using redis on {url}");
DBConfig {
database_type: Some(DatabaseType::Redis),
clear_database: true,
clear_database: false,
database_url: Some(url),
sqlite_path: Default::default(),
}
Expand Down Expand Up @@ -101,7 +101,7 @@ impl TestsContext {
self.server_handle.stop(false).await;
self.thread_handle
.join()
.map_err(|_e| client_error!("failed joining th stop thread"))?
.map_err(|_e| client_error!("failed joining the stop thread"))?
}
}

Expand Down

0 comments on commit 80e6733

Please sign in to comment.