From 5005c309cc3834a5f5e02c0c077c963153da0d6e Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Fri, 18 May 2018 18:23:54 -0700 Subject: [PATCH] Modify usr-bin test --- tests/venv/usr-bin/verify | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/venv/usr-bin/verify b/tests/venv/usr-bin/verify index 27033ec8..19642a9f 100755 --- a/tests/venv/usr-bin/verify +++ b/tests/venv/usr-bin/verify @@ -1,6 +1,5 @@ #!/usr/bin/env python -# Verify that ~/local/bin is on the PATH +# Verify that ~/.local/bin is on the PATH import os -PATH = os.getenv("PATH") -assert "/home/jovyan/local/bin" in PATH +assert "$HOME/.local/bin" in os.getenv("PATH") \ No newline at end of file