From e7052dcd83516c8d1145d890755f66a3cb50a8bd Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Wed, 20 Jan 2021 19:27:50 -0800 Subject: [PATCH] tests/int/spec.bats: don't use HELLO_BUNDLE All tests are run with cd to bundle directory, so let's just use $(pwd). Signed-off-by: Kir Kolyshkin --- tests/integration/spec.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/spec.bats b/tests/integration/spec.bats index 5bcac80ba..dbb022ace 100644 --- a/tests/integration/spec.bats +++ b/tests/integration/spec.bats @@ -16,7 +16,7 @@ function teardown() { } @test "spec generation --bundle" { - runc run --bundle "$HELLO_BUNDLE" test_hello + runc run --bundle "$(pwd)" test_hello [ "$status" -eq 0 ] }