Skip to content

Commit 64ce285

Browse files
authored
Merge pull request #1468 from danielpeintner/2026-01-test-name-typos
refactor: fix spelling issues in test names
2 parents 2fd12dd + 8738a2f commit 64ce285

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/binding-http/test/oauth-token-validation-tests.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ describe("OAuth2.0 Validator tests", () => {
182182
valid.should.eql(true);
183183
}
184184

185-
@test async "should validate cliedId"() {
185+
@test async "should validate clientId"() {
186186
const req = {
187187
headers: {},
188188
url: "http://test?access_token=active",
@@ -192,7 +192,7 @@ describe("OAuth2.0 Validator tests", () => {
192192
valid.should.eql(true);
193193
}
194194

195-
@test async "should validate cliedId using regex"() {
195+
@test async "should validate clientId using regex"() {
196196
const req = {
197197
headers: {},
198198
url: "http://test?access_token=active",
@@ -202,7 +202,7 @@ describe("OAuth2.0 Validator tests", () => {
202202
valid.should.eql(true);
203203
}
204204

205-
@test async "should reject invalid cliedId"() {
205+
@test async "should reject invalid clientId"() {
206206
const req = {
207207
headers: {},
208208
url: "http://test?access_token=active",

0 commit comments

Comments
 (0)