From c96beac23777810d3bf6402d178c82f316fb02f8 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Mon, 26 Aug 2019 09:27:15 -0700 Subject: [PATCH] tests: Drop sort from compose types test The output from the API is already sorted, and 'sort' changes this ordering in some situations. Related: rhbz#1714103 --- tests/cli/test_compose_sanity.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/test_compose_sanity.sh b/tests/cli/test_compose_sanity.sh index 9ecf783b..8677ca34 100755 --- a/tests/cli/test_compose_sanity.sh +++ b/tests/cli/test_compose_sanity.sh @@ -9,7 +9,7 @@ CLI="${CLI:-./src/bin/composer-cli}" rlJournalStart rlPhaseStartTest "compose types" rlAssertEquals "lists all supported types" \ - "`$CLI compose types | sort | xargs`" "alibaba ami ext4-filesystem google live-iso openstack partitioned-disk qcow2 tar vhd vmdk" + "`$CLI compose types | xargs`" "alibaba ami ext4-filesystem google live-iso openstack partitioned-disk qcow2 tar vhd vmdk" rlPhaseEnd rlPhaseStartTest "compose start"