Skip to content
Snippets Groups Projects
Commit 06d3cead authored by Tamara Dahlgren's avatar Tamara Dahlgren Committed by Gregory Becker
Browse files

Change variable name to 'standard' file to avoid confusion with function (#14589)

parent 22a69b04
No related branches found
No related tags found
No related merge requests found
...@@ -39,8 +39,8 @@ def test(self): ...@@ -39,8 +39,8 @@ def test(self):
tty.msg('test: Ensuring the rpath is changed') tty.msg('test: Ensuring the rpath is changed')
currdir = os.getcwd() currdir = os.getcwd()
hello_fn = os.path.join(currdir, 'data', 'hello') hello_file = os.path.join(currdir, 'data', 'hello')
patchelf('--set-rpath', currdir, hello_fn) patchelf('--set-rpath', currdir, hello_file)
output = patchelf('--print-rpath', hello_fn, output = patchelf('--print-rpath', hello_file,
output=str.split, error=str.split) output=str.split, error=str.split)
assert output.strip() == currdir assert output.strip() == currdir
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment