Skip to content

Commit 56e7274

Browse files
committed
fix(test): align proxy-exception test assertion with humanized error wording
The rebase onto main pulled in the humanized auth error messages (97dbe29) which changed "wasn't recognized" to "I don't recognize this key". Update the non-chat client test assertion to match.
1 parent fc04c40 commit 56e7274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/backend/src/routing/proxy/__tests__/proxy-exception.filter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ describe('ProxyExceptionFilter', () => {
203203
error: expect.objectContaining({
204204
type: 'auth_error',
205205
code: 'manifest_auth',
206-
message: expect.stringContaining("wasn't recognized"),
206+
message: expect.stringContaining("don't recognize this key"),
207207
}),
208208
}),
209209
);

0 commit comments

Comments
 (0)