From 928d3b0f5e0b980375917b2d45279fe7e0a10f60 Mon Sep 17 00:00:00 2001 From: Ben Hutton Date: Tue, 28 Jul 2015 14:42:40 +0100 Subject: [PATCH] Fixed incorrect negative description of a sub test Test for boolean is a boolean said "boolean is not a boolean". Removed the "not". --- tests/draft3/type.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/draft3/type.json b/tests/draft3/type.json index 8f108899..337da120 100644 --- a/tests/draft3/type.json +++ b/tests/draft3/type.json @@ -188,7 +188,7 @@ "valid": false }, { - "description": "an array is not an array", + "description": "an array is an array", "data": [], "valid": true }, @@ -234,7 +234,7 @@ "valid": false }, { - "description": "a boolean is not a boolean", + "description": "a boolean is a boolean", "data": true, "valid": true },