From 02648e61ea55b773bffb7a7c21e0e1a09d49e290 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Fri, 15 Nov 2024 18:44:42 +0100 Subject: [PATCH] test/system: Fix typo This wasn't negatively impacting the validity of the test, but it was inconsistent with the pattern used elsewhere. Fallout from 55c0e6378657757c305334adaead804c487817b6 https://github.com/containers/toolbox/pull/1596 --- test/system/101-create.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/101-create.bats b/test/system/101-create.bats index d077c1d8a..8fd9ac842 100644 --- a/test/system/101-create.bats +++ b/test/system/101-create.bats @@ -851,7 +851,7 @@ teardown() { lines=("${stderr_lines[@]}") assert_line --index 0 "Error: options --image and --release cannot be used together" assert_line --index 1 "Run 'toolbox --help' for usage." - assert [ ${#lines[@]} -eq 2 ] + assert [ ${#stderr_lines[@]} -eq 2 ] } @test "create: Try using both --image and --release (using --assumeyes)" {