Skip to content

Commit c270e5c

Browse files
committed
fix: et al
1 parent 32634f1 commit c270e5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/cli/tests/register/register.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ async function ensureDefaultKeystore() {
5959
}
6060

6161
function registerDomain(keystoreDirectoryPath: string, args: string[]): Promise<CliRunResult> {
62-
return runDotnsCli(
63-
["register", "domain", "--password", TEST_PASSWORD, "--account", TEST_ACCOUNT, ...args],
64-
{ DOTNS_KEYSTORE_PATH: keystoreDirectoryPath },
65-
);
62+
return runDotnsCli(["register", "domain", "--account", TEST_ACCOUNT, ...args], {
63+
DOTNS_KEYSTORE_PATH: keystoreDirectoryPath,
64+
DOTNS_KEYSTORE_PASSWORD: TEST_PASSWORD,
65+
});
6666
}
6767

6868
function expectSuccessfulRegistration(result: CliRunResult, label: string) {

0 commit comments

Comments
 (0)