# HG changeset patch # User Kim Alvefur # Date 1684590295 -7200 # Node ID 8c762a30eae00c6263e74535e62cbc87029742c9 # Parent 7d9e26003b05ea1c8a5f0d09a3638e85abcda84e util.jsonschema: Update test suite ignore rules A test case was added in the middle, so all these need to be reordered. diff -r 7d9e26003b05 -r 8c762a30eae0 spec/util_jsonschema_spec.lua --- a/spec/util_jsonschema_spec.lua Sun May 14 19:02:26 2023 +0200 +++ b/spec/util_jsonschema_spec.lua Sat May 20 15:44:55 2023 +0200 @@ -2,7 +2,7 @@ local json = require "util.json"; local lfs = require "lfs"; --- https://github.com/json-schema-org/JSON-Schema-Test-Suite.git 2.0.0-724-g19947ea +-- https://github.com/json-schema-org/JSON-Schema-Test-Suite.git 2.0.0-755-g7950d9e local test_suite_dir = "spec/JSON-Schema-Test-Suite/tests/draft2020-12" if lfs.attributes(test_suite_dir, "mode") ~= "directory" then return end @@ -64,11 +64,12 @@ ["type.json:9:6"] = "null is weird", ["unevaluatedItems.json"] = "NYI", ["unevaluatedProperties.json"] = "NYI", - ["uniqueItems.json:0:11"] = "deepcompare", - ["uniqueItems.json:0:13"] = "deepcompare", + ["uniqueItems.json:0:10"] = "deepcompare", + ["uniqueItems.json:0:12"] = "deepcompare", ["uniqueItems.json:0:14"] = "deepcompare", - ["uniqueItems.json:0:22"] = "deepcompare", - ["uniqueItems.json:0:24"] = "deepcompare", + ["uniqueItems.json:0:15"] = "deepcompare", + ["uniqueItems.json:0:23"] = "deepcompare", + ["uniqueItems.json:0:25"] = "deepcompare", ["uniqueItems.json:0:9"] = "deepcompare", ["unknownKeyword.json"] = "NYI", ["vocabulary.json"] = "NYI",