add service
Some checks failed
Deploy Smart Search Backend Test / deploy (push) Failing after 14m2s

This commit is contained in:
vallyenfail
2026-01-20 13:47:40 +03:00
parent f834967768
commit f2574a8838
6 changed files with 135 additions and 44 deletions

View File

@@ -262,7 +262,7 @@ func (s *IntegrationSuite) TestRequestHandler_GetMailingListByIDSuccess() {
getByIDResp, err := s.requestClient.GetMailingListByID(ctx, getByIDReq)
s.NoError(err)
s.NotNil(getByIDResp)
s.NotNil(getByIDResp.Item)
s.Equal(requestID, getByIDResp.Item.RequestId)
s.Greater(getByIDResp.Item.SuppliersFound, int32(0))
s.NotNil(getByIDResp.Detail)
s.Equal(requestID, getByIDResp.Detail.RequestId)
s.Greater(len(getByIDResp.Detail.Suppliers), 0)
}