Skip to content

Commit

Permalink
NO-JIRA: chore(tests/containers/workbenches/rstudio): trailing slash
Browse files Browse the repository at this point in the history
Let's not use trailing slash for the directory. When this variable is
used and some value should be append to it, it should be done always as:
`APP_ROOT_HOME/some-path`. So the forward slash is added there and we
avoid having double slash in our outputs that may be misleading (e.g.
empty variable value in the path).
  • Loading branch information
jstourac committed Jan 28, 2025
1 parent e94eea7 commit a7ea21e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/containers/workbenches/rstudio/rstudio_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
class TestRStudioImage:
"""Tests for RStudio Workbench images in this repository."""

APP_ROOT_HOME = "/opt/app-root/src/"
APP_ROOT_HOME = "/opt/app-root/src"

@allure.issue("RHOAIENG-17256")
def test_rmd_to_pdf_rendering(self, image: str) -> None:
Expand Down

0 comments on commit a7ea21e

Please sign in to comment.