Skip to content

Commit

Permalink
chore: fix test describe
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwarishubham635 committed Dec 5, 2024
1 parent 07d1651 commit e01b796
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/unit/auth_strategy/BasicAuthStrategy.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import BasicAuthStrategy from "../../../src/auth_strategy/BasicAuthStrategy";

describe("NoAuthStrategy constructor", function () {
describe("BasicAuthStrategy constructor", function () {
const username = "username";
const password = "password";
const basicAuthStrategy = new BasicAuthStrategy(username, password);
Expand Down
4 changes: 2 additions & 2 deletions spec/unit/auth_strategy/TokenAuthStrategy.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function createMockAxios(promiseHandler: Promise<any>) {
return instance;
}

describe("NoAuthStrategy constructor", function () {
describe("TokenAuthStrategy constructor", function () {
const clientId = "clientId";
const clientSecret = "clientSecret";
const grantType = "client_credentials";
Expand Down Expand Up @@ -79,7 +79,7 @@ describe("NoAuthStrategy constructor", function () {
});
});

describe("NoAuthStrategy error response", function () {
describe("TokenAuthStrategy error response", function () {
const clientId = "clientId";
const clientSecret = "clientSecret";
const grantType = "client_credentials";
Expand Down

0 comments on commit e01b796

Please sign in to comment.