diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-10-29 23:57:32 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-10-30 00:48:38 -0600 |
| commit | 6a10b70be201a98ffd3d2fb99e5f8ef237ace3d2 (patch) | |
| tree | 827cfa88ac94bd5e590c5d6f89444e889e404e4b /spec/cli_spec.rb | |
| parent | 22b98c054c940d10f5eef8db03169ac0fa5823b7 (diff) | |
switch from EOS to END as heredoc delimiter
Diffstat (limited to 'spec/cli_spec.rb')
| -rw-r--r-- | spec/cli_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/cli_spec.rb b/spec/cli_spec.rb index 800f13d3..3d192921 100644 --- a/spec/cli_spec.rb +++ b/spec/cli_spec.rb @@ -12,12 +12,12 @@ describe 'asciidoctor-pdf' do it 'should enable sourcemap if --sourcemap option is specified', cli: true do with_tmp_file '.adoc', tmpdir: output_dir do |tmp_file| - tmp_file.write <<~'EOS' + tmp_file.write <<~'END' before **** content - EOS + END tmp_file.close out, err, res = run_command asciidoctor_pdf_bin, '--sourcemap', tmp_file.path (expect res.exitstatus).to be 0 |
