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 <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2021-01-20 19:27:50 -08:00
parent 0cfc2e327d
commit e7052dcd83
+1 -1
View File
@@ -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 ]
}