Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci/runner/runner_search_utils_spec.js')
-rw-r--r--spec/frontend/ci/runner/runner_search_utils_spec.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/frontend/ci/runner/runner_search_utils_spec.js b/spec/frontend/ci/runner/runner_search_utils_spec.js
index 9a4a6139198..0623d2a3348 100644
--- a/spec/frontend/ci/runner/runner_search_utils_spec.js
+++ b/spec/frontend/ci/runner/runner_search_utils_spec.js
@@ -50,8 +50,7 @@ describe('search_params.js', () => {
it('When search params appear as array, they are concatenated', () => {
expect(fromUrlQueryToSearch('?search[]=my&search[]=text').filters).toEqual([
- { type: FILTERED_SEARCH_TERM, value: { data: 'my' } },
- { type: FILTERED_SEARCH_TERM, value: { data: 'text' } },
+ { type: FILTERED_SEARCH_TERM, value: { data: 'my text' } },
]);
});
});