refactor: Remove redundant query string from get app auth client tests

This commit is contained in:
Faruk AYDIN
2024-02-24 01:25:46 +01:00
parent 03f1dbd5b2
commit 832d323a6e

View File

@@ -21,7 +21,7 @@ describe('GET /api/v1/app-auth-clients/:id', () => {
it('should return specified app auth client info', async () => {
const response = await request(app)
.get(`/api/v1/app-auth-clients/${currentAppAuthClient.id}?active=true`)
.get(`/api/v1/app-auth-clients/${currentAppAuthClient.id}`)
.set('Authorization', token)
.expect(200);