Skip to content

Commit

Permalink
fix(cmd-line): parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
as-op committed Jun 24, 2024
1 parent 254d0ae commit e48ccb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/markdown_to_pdf/generator_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

it "generate the demo via cmdline" do
FileUtils.rm_f(dest_filename)
system("bundle exec md_to_pdf #{source_filename} #{styling_filename} #{dest_filename} >/dev/null 2>&1")
system("bundle exec md_to_pdf #{styling_filename} #{source_filename} #{dest_filename} >/dev/null 2>&1")
expect(File.exist?(dest_filename)).to be(true)
end
end

0 comments on commit e48ccb9

Please sign in to comment.