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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-10 15:10:18 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-10 15:10:18 +0300
commite838c62efb5d95fe76b5bbb6cba8b73c40eb2008 (patch)
tree6950ae1392a4c596e0885e7f79a8b69d6b008afb /spec/frontend/blob
parent240609275dbc67cfd6eab5d5a55ab632db41a9ac (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/blob')
-rw-r--r--spec/frontend/blob/viewer/index_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/frontend/blob/viewer/index_spec.js b/spec/frontend/blob/viewer/index_spec.js
index 705c4630a68..061ac7ad167 100644
--- a/spec/frontend/blob/viewer/index_spec.js
+++ b/spec/frontend/blob/viewer/index_spec.js
@@ -28,7 +28,7 @@ describe('Blob viewer', () => {
loadFixtures('blob/show_readme.html');
$('#modal-upload-blob').remove();
- mock.onGet(/blob\/master\/README\.md/).reply(200, {
+ mock.onGet(/blob\/.+\/README\.md/).reply(200, {
html: '<div>testing</div>',
});