From f0a805af844a5867ea61c2ef899bffe24d7d24b1 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Wed, 7 Dec 2022 20:01:38 +0100 Subject: [PATCH] test/system: Fix indentation https://github.com/containers/toolbox/pull/1192 --- test/system/102-list.bats | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/test/system/102-list.bats b/test/system/102-list.bats index 0444be8..677290f 100644 --- a/test/system/102-list.bats +++ b/test/system/102-list.bats @@ -100,20 +100,20 @@ teardown() { } @test "list: List an image without a name" { - echo -e "FROM scratch\n\nLABEL com.github.containers.toolbox=\"true\"" > "$BATS_TMPDIR"/Containerfile + echo -e "FROM scratch\n\nLABEL com.github.containers.toolbox=\"true\"" > "$BATS_TMPDIR"/Containerfile - run $PODMAN build "$BATS_TMPDIR" + run $PODMAN build "$BATS_TMPDIR" - assert_success - assert_line --index 0 --partial "FROM scratch" - assert_line --index 1 --partial "LABEL com.github.containers.toolbox=\"true\"" - assert_line --index 2 --partial "COMMIT" - assert_line --index 3 --regexp "^--> [a-z0-9]*$" + assert_success + assert_line --index 0 --partial "FROM scratch" + assert_line --index 1 --partial "LABEL com.github.containers.toolbox=\"true\"" + assert_line --index 2 --partial "COMMIT" + assert_line --index 3 --regexp "^--> [a-z0-9]*$" - run --keep-empty-lines $TOOLBOX list + run --keep-empty-lines $TOOLBOX list - assert_success - assert_line --index 1 --partial "" + assert_success + assert_line --index 1 --partial "" - rm -f "$BATS_TMPDIR"/Containerfile + rm -f "$BATS_TMPDIR"/Containerfile }