From c40156b22b2f365438017838ec1f84ebaea32d6c Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 14 Sep 2016 02:13:44 +0200 Subject: [PATCH] Invert the output of the "appbroker.sh" test --- tests/appbroker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/appbroker.sh b/tests/appbroker.sh index 481db9a..b2a7f3a 100755 --- a/tests/appbroker.sh +++ b/tests/appbroker.sh @@ -35,7 +35,7 @@ expected="${interface%.interface}.expected" $APPBROKER -o "$tmpfile" "$interface" ret=$? if [ $ret -eq 0 ]; then - $DIFF -- "$tmpfile" "$expected" + $DIFF -- "$expected" "$tmpfile" ret=$? fi $RM -- "$tmpfile"