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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuzanne Selhorn <sselhorn@gitlab.com>2023-06-26 20:51:21 +0300
committerSuzanne Selhorn <sselhorn@gitlab.com>2023-06-26 20:51:21 +0300
commitd10850c478860971d19643a4d8e1754d74a62e87 (patch)
tree3501cc865422a7dd642e02b408741531b95fc12e
parent9a70898e0f4b793b27e2b9cdaf5d9c360b670a32 (diff)
Removed tiers wordselhorn-new-badge
-rw-r--r--spec/lib/filters/badges_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/filters/badges_spec.rb b/spec/lib/filters/badges_spec.rb
index 23d63cfa..6690d1df 100644
--- a/spec/lib/filters/badges_spec.rb
+++ b/spec/lib/filters/badges_spec.rb
@@ -81,7 +81,7 @@ describe BadgesFilter do
end
context 'when <strong>(MIXED)</strong> badge' do
- let(:content) { '<strong>(MIXED TIERS)</strong>' }
+ let(:content) { '<strong>(MIXED)</strong>' }
it 'returns correct HTML' do
expect(run).to eq('<span class="badge-trigger mixed"></span>')
@@ -167,7 +167,7 @@ describe BadgesFilter do
end
context 'when **(MIXED)** badge' do
- let(:content) { '**(MIXED TIERS)**' }
+ let(:content) { '**(MIXED)**' }
it 'returns correct HTML' do
expect(run_from_markdown).to eq('<span class="badge-trigger mixed"></span>')