summaryrefslogtreecommitdiff
path: root/spec/font_spec.rb
diff options
context:
space:
mode:
authorAlexander Schwartz <alexander.schwartz@gmx.net>2021-04-10 11:43:05 +0200
committerGitHub <noreply@github.com>2021-04-10 03:43:05 -0600
commit46a8df4312675418547953617635d123f5447184 (patch)
tree407e2bde084575b00bb45b2459d133931bc304be /spec/font_spec.rb
parenta33d8138944b6f2097849adcd4c536ef8403df31 (diff)
resolves #1909 improve warning about missing characters in fonts with an escaped unicode format (PR #1910)
Diffstat (limited to 'spec/font_spec.rb')
-rw-r--r--spec/font_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/font_spec.rb b/spec/font_spec.rb
index 4f0a1057..3c2e44e2 100644
--- a/spec/font_spec.rb
+++ b/spec/font_spec.rb
@@ -95,7 +95,7 @@ describe 'Asciidoctor::PDF::Converter - Font' do
input = input_lines.join %(\n\n)
pdf = to_pdf input, attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' }, analyze: true
(expect pdf.lines).to eql input_lines
- end).to log_message severity: :WARN, message: %(Could not locate the character `\u20bf' in the following fonts: Noto Serif, M+ 1p Fallback, Noto Emoji), using_log_level: :INFO
+ end).to log_message severity: :WARN, message: %(Could not locate the character `\u20bf' (\\u20bf) in the following fonts: Noto Serif, M+ 1p Fallback, Noto Emoji), using_log_level: :INFO
end
end