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>2023-06-06 21:07:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-06 21:07:33 +0300
commit9e5484cee690f8bb2c1796013345d8cbc1872d77 (patch)
tree7b5c95c7de5eaba5ebb053da65c83184af1cf74c /spec/frontend/usage_quotas
parent638e2f1c5f55988135da63c7aa57bcecb9355a2b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/usage_quotas')
-rw-r--r--spec/frontend/usage_quotas/components/sectioned_percentage_bar_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/usage_quotas/components/sectioned_percentage_bar_spec.js b/spec/frontend/usage_quotas/components/sectioned_percentage_bar_spec.js
index 22b449c2a70..6b022172d46 100644
--- a/spec/frontend/usage_quotas/components/sectioned_percentage_bar_spec.js
+++ b/spec/frontend/usage_quotas/components/sectioned_percentage_bar_spec.js
@@ -65,7 +65,7 @@ describe('SectionedPercentageBar', () => {
'background-color: rgb(0, 144, 177); width: 21.4286%;',
);
expect(section4.attributes('style')).toBe(
- 'background-color: rgb(54, 104, 0); width: 35.7143%;',
+ 'background-color: rgb(78, 127, 14); width: 35.7143%;',
);
expect(section1.text()).toMatchInterpolatedText('Section 1 14.3%');
expect(section2.text()).toMatchInterpolatedText('Section 2 28.6%');
@@ -96,6 +96,6 @@ describe('SectionedPercentageBar', () => {
).toBe('background-color: rgb(0, 144, 177);');
expect(
section4.find(`[data-testid="${LEGEND_SECTION_COLOR_TESTID}"]`).attributes('style'),
- ).toBe('background-color: rgb(54, 104, 0);');
+ ).toBe('background-color: rgb(78, 127, 14);');
});
});