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>2022-12-15 21:09:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-15 21:09:34 +0300
commita84aefe0bb8fc2ad47ab67cb4ddcfbb7aecfbd5e (patch)
treedfcd00dc9603a8c652211c6066ceae0c97df1a7f /spec/frontend/releases
parent16cdacff02fbf0069182e090df2eeaa754007957 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/releases')
-rw-r--r--spec/frontend/releases/__snapshots__/util_spec.js.snap18
-rw-r--r--spec/frontend/releases/components/release_block_footer_spec.js2
2 files changed, 10 insertions, 10 deletions
diff --git a/spec/frontend/releases/__snapshots__/util_spec.js.snap b/spec/frontend/releases/__snapshots__/util_spec.js.snap
index 4084d734b83..00fc521b716 100644
--- a/spec/frontend/releases/__snapshots__/util_spec.js.snap
+++ b/spec/frontend/releases/__snapshots__/util_spec.js.snap
@@ -43,10 +43,10 @@ Object {
},
"author": Object {
"__typename": "UserCore",
- "avatarUrl": "https://www.gravatar.com/avatar/16f8e2050ce10180ca571c2eb19cfce2?s=80&d=identicon",
+ "avatarUrl": "https://www.gravatar.com/avatar/eb329fbfeccd9e6d45ff159da8736876?s=80&d=identicon",
"id": Any<String>,
- "username": "administrator",
- "webUrl": "http://localhost/administrator",
+ "username": "user1",
+ "webUrl": "http://localhost/user1",
},
"commit": Object {
"shortId": "b83d6e39",
@@ -141,10 +141,10 @@ Object {
},
"author": Object {
"__typename": "UserCore",
- "avatarUrl": "https://www.gravatar.com/avatar/16f8e2050ce10180ca571c2eb19cfce2?s=80&d=identicon",
+ "avatarUrl": "https://www.gravatar.com/avatar/eb329fbfeccd9e6d45ff159da8736876?s=80&d=identicon",
"id": Any<String>,
- "username": "administrator",
- "webUrl": "http://localhost/administrator",
+ "username": "user1",
+ "webUrl": "http://localhost/user1",
},
"commit": Object {
"shortId": "b83d6e39",
@@ -365,10 +365,10 @@ Object {
},
"author": Object {
"__typename": "UserCore",
- "avatarUrl": "https://www.gravatar.com/avatar/16f8e2050ce10180ca571c2eb19cfce2?s=80&d=identicon",
+ "avatarUrl": "https://www.gravatar.com/avatar/eb329fbfeccd9e6d45ff159da8736876?s=80&d=identicon",
"id": Any<String>,
- "username": "administrator",
- "webUrl": "http://localhost/administrator",
+ "username": "user1",
+ "webUrl": "http://localhost/user1",
},
"commit": Object {
"shortId": "b83d6e39",
diff --git a/spec/frontend/releases/components/release_block_footer_spec.js b/spec/frontend/releases/components/release_block_footer_spec.js
index d13cff49db2..19b41d05a44 100644
--- a/spec/frontend/releases/components/release_block_footer_spec.js
+++ b/spec/frontend/releases/components/release_block_footer_spec.js
@@ -66,7 +66,7 @@ describe('Release block footer', () => {
describe.each`
authorType | authorFlag | expectedAuthorString
${'empty'} | ${undefined} | ${null}
- ${'present'} | ${originalRelease.author} | ${'by administrator'}
+ ${'present'} | ${originalRelease.author} | ${'by user1'}
`('with author set to $authorType', ({ authorFlag, expectedAuthorString }) => {
const propsData = { sort: sortFlag, author: authorFlag };
if (dateFlag !== '') {