diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-05-02 17:30:13 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-05-02 17:30:13 -0600 |
| commit | b630e68b47ab812d8ef9b39f0fd4647e28e34a90 (patch) | |
| tree | 7e9abfc7237412f16b230e04f60d909f75280d99 | |
| parent | 72a76385f0747d1a924d03c1dcfdec4b7153f136 (diff) | |
remove debug flags in test suite
| -rw-r--r-- | spec/floating_title_spec.rb | 2 | ||||
| -rw-r--r-- | spec/quote_spec.rb | 2 | ||||
| -rw-r--r-- | spec/table_spec.rb | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/spec/floating_title_spec.rb b/spec/floating_title_spec.rb index a4258896..eae6bb4d 100644 --- a/spec/floating_title_spec.rb +++ b/spec/floating_title_spec.rb @@ -145,7 +145,7 @@ describe 'Asciidoctor::PDF::Converter - Floating Title' do EOS lines = (to_pdf input, pdf_theme: pdf_theme, analyze: :line).lines - pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true, debug: true + pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true (expect lines).to have_size 3 (expect lines[0][:color]).to eql 'AA0000' diff --git a/spec/quote_spec.rb b/spec/quote_spec.rb index 3993af3c..bbb656cc 100644 --- a/spec/quote_spec.rb +++ b/spec/quote_spec.rb @@ -123,7 +123,7 @@ describe 'Asciidoctor::PDF::Converter - Quote' do it 'should not draw left border on next page if block falls at bottom of page' do pdf = with_content_spacer 10, 689.5 do |spacer_path| - to_pdf <<~EOS, analyze: :line, debug: true + to_pdf <<~EOS, analyze: :line image::#{spacer_path}[] ____ diff --git a/spec/table_spec.rb b/spec/table_spec.rb index 61a6ad5b..83c1dc6b 100644 --- a/spec/table_spec.rb +++ b/spec/table_spec.rb @@ -732,7 +732,7 @@ describe 'Asciidoctor::PDF::Converter - Table' do table_grid_width: nil, table_grid_color: nil, } - pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line, debug: true + pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line |=== | A | B | C | D @@ -752,7 +752,7 @@ describe 'Asciidoctor::PDF::Converter - Table' do table_grid_width: nil, table_grid_color: nil, } - pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line, debug: true + pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line |=== | A | B | C | D |
