Skip to content

Commit

Permalink
poppler: fix test_v1_package
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Nov 14, 2023
1 parent b9abb9f commit 258f12f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/poppler/all/test_v1_package/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ def build(self):
def test(self):
if not tools.cross_building(self):
bin_path = os.path.join("bin", "test_package")
pdf_path = os.path.join(self.source_folder, "sample.pdf")
self.run("{} {}".format(bin_path, pdf_path), run_environment=True)
pdf_path = os.path.join(self.source_folder, os.pardir, "test_package", "sample.pdf")
self.run(f"{bin_path} {pdf_path}", run_environment=True)

0 comments on commit 258f12f

Please sign in to comment.