Skip to content

Commit 486dcc3

Browse files
committed
Fix call sites and lints
1 parent 9f44637 commit 486dcc3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/cli/src/subcommands/init.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@ mod tests {
21172117
let project_path = temp.path();
21182118
std::fs::create_dir_all(project_path.join("spacetimedb")).unwrap();
21192119

2120-
let created = create_default_spacetime_config_if_missing(project_path, false)
2120+
let created = create_default_spacetime_config_if_missing(project_path, false, "maincloud")
21212121
.unwrap()
21222122
.expect("expected config to be created");
21232123
assert_eq!(created, project_path.join("spacetime.json"));
@@ -2139,7 +2139,7 @@ mod tests {
21392139
let project_path = temp.path();
21402140
std::fs::create_dir_all(project_path.join("spacetimedb")).unwrap();
21412141

2142-
let created = create_default_spacetime_config_if_missing(project_path, true)
2142+
let created = create_default_spacetime_config_if_missing(project_path, true, "maincloud")
21432143
.unwrap()
21442144
.expect("expected config to be created");
21452145
assert_eq!(created, project_path.join("spacetime.json"));

0 commit comments

Comments
 (0)