From 773bbffd7f2c54ebadcc34be57b56450865aa54f Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Tue, 25 Aug 2020 15:24:45 +0200 Subject: Just use `rm` for helper command to remove storage This allows to use any kind of `rm` in `$PATH` for the system tests. Signed-off-by: Sascha Grunert --- test/system/helpers.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/system') diff --git a/test/system/helpers.bash b/test/system/helpers.bash index a6414344e..6c24b24b3 100644 --- a/test/system/helpers.bash +++ b/test/system/helpers.bash @@ -67,7 +67,7 @@ function basic_teardown() { run_podman '?' pod rm --all --force run_podman '?' rm --all --force - /bin/rm -rf $PODMAN_TMPDIR + command rm -rf $PODMAN_TMPDIR } -- cgit v1.2.3-54-g00ecf