-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(quarto): fix failing test on windows
Output was: ``` ── Failure ('test-tar_quarto.R:521:3'): tar_quarto() reruns if target changes in included file ── sort(basename(out)) (`actual`) not equal to sort(c("main.html", "main.qmd", "file1.qmd")) (`expected`). `actual`: "file1.qmd" "file1.qmd" "main.html" "main.qmd" `expected`: "file1.qmd" "main.html" "main.qmd" ``` Thus, `file1.qmd` were not detected as a duplicate of the other `file1.qmd`. Probably because they have different paths. Thus, make `unique` command apear later in chain (after `path_rel`). This way, we should fix this issue.
- Loading branch information
Showing
2 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters