diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2023-02-06 03:07:35 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2023-02-06 03:07:35 +0000 |
commit | bdb97ece6809b945927d50effcdf9d284634d4d5 (patch) | |
tree | a5bf5284a9c233f47ca65ce5790a8276b3fade3b /spec/frontend/boards | |
parent | bd9860f6911096e8ffe269797b90edd611f9b40f (diff) | |
download | gitlab-ce-bdb97ece6809b945927d50effcdf9d284634d4d5.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/boards')
-rw-r--r-- | spec/frontend/boards/mock_data.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/frontend/boards/mock_data.js b/spec/frontend/boards/mock_data.js index 0ab8a89bcca..1d011eacf1c 100644 --- a/spec/frontend/boards/mock_data.js +++ b/spec/frontend/boards/mock_data.js @@ -1,6 +1,7 @@ import { GlFilteredSearchToken } from '@gitlab/ui'; import { keyBy } from 'lodash'; import { ListType } from '~/boards/constants'; +import { HTTP_STATUS_OK } from '~/lib/utils/http_status'; import { OPERATORS_IS, OPERATORS_IS_NOT, @@ -460,7 +461,7 @@ export const BoardsMockData = { export const boardsMockInterceptor = (config) => { const body = BoardsMockData[config.method.toUpperCase()][config.url]; - return [200, body]; + return [HTTP_STATUS_OK, body]; }; export const mockList = { |