test/system: Remove redundant quotes

https://github.com/containers/toolbox/pull/1282
This commit is contained in:
Debarshi Ray 2023-03-26 10:36:19 +02:00
parent 9f4d906e39
commit 23e636bb2a

View file

@ -87,7 +87,7 @@ teardown() {
@test "create: Fedora 34" {
pull_distro_image fedora 34
run $TOOLBOX --assumeyes create --distro "fedora" --release f34
run $TOOLBOX --assumeyes create --distro fedora --release f34
assert_success
assert_output --partial "Created container: fedora-toolbox-34"
@ -339,7 +339,7 @@ teardown() {
@test "create: Try using both --distro and --image" {
pull_distro_image fedora 34
run $TOOLBOX --assumeyes create --distro "fedora" --image fedora-toolbox:34
run $TOOLBOX --assumeyes create --distro fedora --image fedora-toolbox:34
assert_failure
assert_line --index 0 "Error: options --distro and --image cannot be used together"