소스 검색

🐛 fix(test): correct error message assertion case

- change expected error message from 'Not found' to 'not found' to match actual response case
yourname 4 주 전
부모
커밋
a28af3d122
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/shared-test-util/src/integration-test-utils.ts

+ 1 - 1
packages/shared-test-util/src/integration-test-utils.ts

@@ -170,7 +170,7 @@ export class ApiResponseAssertions {
    */
   static expectNotFound(response: { status: number; data: any }): void {
     IntegrationTestAssertions.expectStatus(response, 404);
-    IntegrationTestAssertions.expectErrorResponse(response, 'Not found');
+    IntegrationTestAssertions.expectErrorResponse(response, 'not found');
   }
 
   /**