Commit 3eacfe74 authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Merge branch 'sh-fix-issue-321771' into 'master'

[RUN ALL RSPEC] Fix spec failure in  spec/features/markdown/markdown_spec.rb

See merge request gitlab-org/gitlab!54410
parents d53bb7c1 d31463b0
...@@ -13,9 +13,8 @@ module Gitlab ...@@ -13,9 +13,8 @@ module Gitlab
packetdiag packetdiag
rackdiag rackdiag
].freeze ].freeze
DIAGRAMS_FORMATS = ::AsciidoctorExtensions::Kroki::SUPPORTED_DIAGRAM_NAMES DIAGRAMS_FORMATS = (::AsciidoctorExtensions::Kroki::SUPPORTED_DIAGRAM_NAMES - %w(mermaid)).freeze
DIAGRAMS_FORMATS_WO_PLANTUML = DIAGRAMS_FORMATS DIAGRAMS_FORMATS_WO_PLANTUML = (DIAGRAMS_FORMATS - %w(plantuml)).freeze
.reject { |diagram_type| diagram_type == 'plantuml' }
# Get the list of diagram formats that are currently enabled # Get the list of diagram formats that are currently enabled
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment