diff options
author | Eric Desrochers <eric.desrochers@canonical.com> | 2021-03-22 23:53:16 -0400 |
---|---|---|
committer | Bryan Quigley <code@bryanquigley.com> | 2021-03-23 12:44:58 -0700 |
commit | 5dcd62b581a21e5967f906ae7e3131bf8cde1833 (patch) | |
tree | f16c84a8eb9d437dc9dddd2f6d3c54a22e8a87cc /tests | |
parent | dddabb07a88d398ed7b8a878e95acfd968af6698 (diff) | |
download | sos-5dcd62b581a21e5967f906ae7e3131bf8cde1833.tar.gz |
[tests] Fix typo
/var/tmp/sosreport_test/ instead of
/var/tmp/sosreport/_test/
Resolves: #2457
Signed-off-by: Eric Desrochers <eric.desrochers@canonical.com>
Signed-off-by: Bryan Quigley <code@bryanquigley.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/simple.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple.sh b/tests/simple.sh index e323cffc..3eb123c1 100755 --- a/tests/simple.sh +++ b/tests/simple.sh @@ -171,7 +171,7 @@ test_mask () { ip_addr=$(ip route show default | awk '/default/ {print $3}') if [ "$(grep -rI $ip_addr /var/tmp/sosreport_test/*)" ]; then add_failure "IP address not obfuscated in all places" - echo "$(grep -rI $ip_addr /var/tmp/sosreport/_test/*)" + echo "$(grep -rI $ip_addr /var/tmp/sosreport_test/*)" fi update_failures fi |