summaryrefslogtreecommitdiff
path: root/spec/frontend/projects/project_find_file_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/projects/project_find_file_spec.js')
-rw-r--r--spec/frontend/projects/project_find_file_spec.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/frontend/projects/project_find_file_spec.js b/spec/frontend/projects/project_find_file_spec.js
index eec54dd04bc..efc9d411a98 100644
--- a/spec/frontend/projects/project_find_file_spec.js
+++ b/spec/frontend/projects/project_find_file_spec.js
@@ -4,6 +4,7 @@ import { TEST_HOST } from 'helpers/test_constants';
import waitForPromises from 'helpers/wait_for_promises';
import { sanitize } from '~/lib/dompurify';
import axios from '~/lib/utils/axios_utils';
+import { HTTP_STATUS_OK } from '~/lib/utils/http_status';
import ProjectFindFile from '~/projects/project_find_file';
jest.mock('~/lib/dompurify', () => ({
@@ -60,7 +61,7 @@ describe('ProjectFindFile', () => {
element = $(TEMPLATE);
mock.onGet(FILE_FIND_URL).replyOnce(
- 200,
+ HTTP_STATUS_OK,
files.map((x) => x.path),
);
getProjectFindFileInstance(); // This triggers a load / axios call + subsequent render in the constructor