diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-05-08 18:51:24 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-07-25 11:00:34 +0200 |
commit | 8de25347319388d439de276b53de0b41aeb41114 (patch) | |
tree | 04cdab15d371557d2f1a900c6c104a13e4c7950b | |
parent | 7491bed8cddb928589c3f7fa1bb308352f15962b (diff) |
fix apt-config test now that PATH changed in 8c617819
Which, in this cherrypick is actually 7491bed8.
Git-Dch: Ignore
-rwxr-xr-x | test/integration/test-kernel-helper-autoremove | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/test-kernel-helper-autoremove b/test/integration/test-kernel-helper-autoremove index c51caa758..22c36890b 100755 --- a/test/integration/test-kernel-helper-autoremove +++ b/test/integration/test-kernel-helper-autoremove @@ -9,7 +9,7 @@ configarchitecture 'amd64' # the executed script would use the installed apt-config, # which is outside of our control msgtest 'Check that the installed apt-config supports' '--no-empty' -if apt-config dump --no-empty >/dev/null 2>&1; then +if /usr/bin/apt-config dump --no-empty >/dev/null 2>&1; then msgpass else msgskip |