summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-12-06 16:27:46 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-12-06 16:31:29 +0100
commitf0d12775a583ecc7ad6b7b1d215a09c4b9ab8dbf (patch)
tree915d016f3b0968448e3e446d3918659fd957563d /src
parent74afa3cc385827c1c1e46153368fc16e12419e84 (diff)
Fix test for profile creation
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src')
-rw-r--r--src/profile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profile.rs b/src/profile.rs
index 4a9bc2a..205f3b4 100644
--- a/src/profile.rs
+++ b/src/profile.rs
@@ -274,7 +274,7 @@ mod tests {
#[tokio::test]
async fn test_create_profile() {
let _ = env_logger::try_init();
- let profile = Profile::new_inmemory(Config::default()).await;
+ let profile = Profile::new_inmemory(Config::default(), "test-create-profile").await;
assert!(profile.is_ok());
}