Skip to content

Commit

Permalink
[CI]: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Behzad-rabiei committed Jan 29, 2024
1 parent c31988f commit e4d8f3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __tests__/unit/database/services/guildMember.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ setupTestDB();
describe('guildMember service', () => {
let connection: Connection;
beforeAll(async () => {
connection = await DatabaseManager.getInstance().getTenantDb('connection-1');
connection = await DatabaseManager.getInstance().getTenantDb('connection-2');
});
afterAll(async () => {
await connection.close();
Expand Down
2 changes: 1 addition & 1 deletion __tests__/unit/database/services/rawInfo.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ setupTestDB();
describe('rawInfo service', () => {
let connection: Connection;
beforeAll(async () => {
connection = await DatabaseManager.getInstance().getTenantDb('connection-1');
connection = await DatabaseManager.getInstance().getTenantDb('connection-3');
});
afterAll(async () => {
await connection.close();
Expand Down
2 changes: 1 addition & 1 deletion __tests__/unit/database/services/role.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ setupTestDB();
describe('role service', () => {
let connection: Connection;
beforeAll(async () => {
connection = await DatabaseManager.getInstance().getTenantDb('connection-1');
connection = await DatabaseManager.getInstance().getTenantDb('connection-4');
});
afterAll(async () => {
await connection.close();
Expand Down

0 comments on commit e4d8f3e

Please sign in to comment.