[#44] 매장 기능 도입 #45

Merged
pricelees merged 116 commits from feat/#44 into main 2025-09-20 03:15:06 +00:00
3 changed files with 6 additions and 6 deletions
Showing only changes of commit 0b8963b8c5 - Show all commits

View File

@ -200,7 +200,7 @@ class PaymentAPITest(
method = HttpMethod.POST, method = HttpMethod.POST,
endpoint = endpoint, endpoint = endpoint,
requestBody = PaymentFixture.cancelRequest, requestBody = PaymentFixture.cancelRequest,
expectedErrorCode = AuthErrorCode.TOKEN_NOT_FOUND expectedErrorCode = AuthErrorCode.MEMBER_NOT_FOUND
) )
} }
@ -210,7 +210,7 @@ class PaymentAPITest(
method = HttpMethod.POST, method = HttpMethod.POST,
endpoint = endpoint, endpoint = endpoint,
requestBody = PaymentFixture.cancelRequest, requestBody = PaymentFixture.cancelRequest,
expectedErrorCode = AuthErrorCode.ACCESS_DENIED expectedErrorCode = AuthErrorCode.MEMBER_NOT_FOUND
) )
} }
} }

View File

@ -51,7 +51,7 @@ class ReservationApiTest(
runExceptionTest( runExceptionTest(
method = HttpMethod.POST, method = HttpMethod.POST,
endpoint = endpoint, endpoint = endpoint,
expectedErrorCode = AuthErrorCode.TOKEN_NOT_FOUND expectedErrorCode = AuthErrorCode.MEMBER_NOT_FOUND
) )
} }
@ -60,7 +60,7 @@ class ReservationApiTest(
token = testAuthUtil.defaultHqAdminLogin().second, token = testAuthUtil.defaultHqAdminLogin().second,
method = HttpMethod.POST, method = HttpMethod.POST,
endpoint = endpoint, endpoint = endpoint,
expectedErrorCode = AuthErrorCode.ACCESS_DENIED expectedErrorCode = AuthErrorCode.MEMBER_NOT_FOUND
) )
} }
} }

View File

@ -145,7 +145,7 @@ class UserApiTest(
runExceptionTest( runExceptionTest(
method = HttpMethod.GET, method = HttpMethod.GET,
endpoint = endpoint, endpoint = endpoint,
expectedErrorCode = AuthErrorCode.TOKEN_NOT_FOUND expectedErrorCode = AuthErrorCode.MEMBER_NOT_FOUND
) )
} }
@ -154,7 +154,7 @@ class UserApiTest(
token = testAuthUtil.defaultStoreAdminLogin().second, token = testAuthUtil.defaultStoreAdminLogin().second,
method = HttpMethod.GET, method = HttpMethod.GET,
endpoint = endpoint, endpoint = endpoint,
expectedErrorCode = AuthErrorCode.ACCESS_DENIED expectedErrorCode = AuthErrorCode.MEMBER_NOT_FOUND
) )
} }
} }