From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38148) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2NSA-0004DH-1H for qemu-devel@nongnu.org; Sun, 12 Jan 2014 11:00:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W2NS2-0004aI-4r for qemu-devel@nongnu.org; Sun, 12 Jan 2014 10:59:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39607) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2NS1-0004a4-TP for qemu-devel@nongnu.org; Sun, 12 Jan 2014 10:59:50 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s0CFxmXH024663 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 12 Jan 2014 10:59:49 -0500 From: Max Reitz Date: Sun, 12 Jan 2014 17:01:27 +0100 Message-Id: <1389542487-7727-1-git-send-email-mreitz@redhat.com> Subject: [Qemu-devel] [PATCH] tests: Correct comment for qdict_array_split test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Stefan Hajnoczi , Max Reitz The comment explaining the expected behavior was actually mistaken (the test code, however, was not). Fix this. Signed-off-by: Max Reitz --- tests/check-qdict.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/check-qdict.c b/tests/check-qdict.c index d4ec631..7a7461b 100644 --- a/tests/check-qdict.c +++ b/tests/check-qdict.c @@ -323,11 +323,11 @@ static void qdict_array_split_test(void) * * [ * { - * "a": 42 + * "a": 42, + * "b": 23 * }, * { - * "x": 0, - * "y": 1 + * "x": 0 * } * ] * -- 1.8.5.2