Skip to content

Commit 98a1b92

Browse files
- --approot passing in test fix.
1 parent ac8e5e4 commit 98a1b92

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test/python/stackql_test_tooling/StackQLInterfaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ def _run_stackql_shell_command_native(
550550
if approot:
551551
supplied_args.append(f'--approot={approot}')
552552
else:
553-
supplied_args.append(f'--approot="{_TEST_APP_CACHE_ROOT}"')
553+
supplied_args.append(f'--approot={_TEST_APP_CACHE_ROOT}')
554554
supplied_args.append(f"--execution.concurrency.limit={self._concurrency_limit}")
555555
supplied_args = supplied_args + list(args)
556556
stdout = cfg.get('stdout', subprocess.PIPE)

test/robot/functional/stackql_sessions.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Shell Session Multiple Statements Inline
4646
... dummyapp.io
4747
... stdout=${CURDIR}/tmp/Shell-Session-Multiple-Statements-Inline.tmp
4848
# Verify readline history preserves trailing semicolons
49-
${readline_content} = Get File ${REPOSITORY_ROOT}${/}.stackql${/}readline${/}readline.tmp
49+
${readline_content} = Get File ${REPOSITORY_ROOT}${/}test${/}.stackql${/}readline${/}readline.tmp
5050
Should Contain ${readline_content} stackql_repositories;
5151
Should Contain ${readline_content} order by name desc;
5252
[Teardown] Stackql Per Test Teardown

0 commit comments

Comments
 (0)