Skip to content

Commit d0f2f05

Browse files
committed
fix
1 parent 066a59c commit d0f2f05

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/e2e/helpers/api/api-database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export async function discoverSentinelDatabaseApi(databaseParameters: SentinelPa
7373
})
7474
.set('Accept', 'application/json');
7575

76-
await t.expect(response.status).eql(200, 'Autodiscovery of Sentinel database request failed');
76+
await t.expect(response.status).eql(201, 'Autodiscovery of Sentinel database request failed');
7777
}
7878

7979
/**

tests/e2e/helpers/conf.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ export const ossSentinelConfig = {
4545
alias: 'primary-group-1',
4646
db: '0',
4747
name: 'primary-group-1',
48-
password: 'defaultpass'
48+
password: 'password'
4949
},
5050
{
5151
alias: 'primary-group-2',
5252
db: '0',
5353
name: 'primary-group-2',
54-
password: 'defaultpass'
54+
password: 'password'
5555
}],
5656
name: ['primary-group-1', 'primary-group-2']
5757
};

0 commit comments

Comments
 (0)