Skip to content

Commit 51e022e

Browse files
committed
NO-JIRA: chore(tests/containers/workbenches/rstudio): trailing slash
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).
1 parent 772e8af commit 51e022e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/containers/workbenches/rstudio/rstudio_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class TestRStudioImage:
2323
"""Tests for RStudio Workbench images in this repository."""
2424

25-
APP_ROOT_HOME = "/opt/app-root/src/"
25+
APP_ROOT_HOME = "/opt/app-root/src"
2626

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

0 commit comments

Comments
 (0)