[#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,
endpoint = endpoint,
requestBody = PaymentFixture.cancelRequest,
expectedErrorCode = AuthErrorCode.TOKEN_NOT_FOUND
expectedErrorCode = AuthErrorCode.MEMBER_NOT_FOUND
)
}
@ -210,7 +210,7 @@ class PaymentAPITest(
method = HttpMethod.POST,
endpoint = endpoint,
requestBody = PaymentFixture.cancelRequest,
expectedErrorCode = AuthErrorCode.ACCESS_DENIED
expectedErrorCode = AuthErrorCode.MEMBER_NOT_FOUND
)
}
}

View File

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

View File

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