From 8a9a7508b33944dbf3c7c9d18093c0ccb0dd10d3 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Fri, 29 Nov 2024 00:42:44 +0200 Subject: [PATCH] fix typos in testdata file names --- .../in.json | 0 .../in.yaml | 0 .../out.yaml | 0 .../error | 0 .../in.yaml | 0 yaml_test_suite_test.go | 4 ++-- 6 files changed, 2 insertions(+), 2 deletions(-) rename testdata/yaml-test-suite/{explicit-key-and-value-seperated-by-comment => explicit-key-and-value-separated-by-comment}/in.json (100%) rename testdata/yaml-test-suite/{explicit-key-and-value-seperated-by-comment => explicit-key-and-value-separated-by-comment}/in.yaml (100%) rename testdata/yaml-test-suite/{explicit-key-and-value-seperated-by-comment => explicit-key-and-value-separated-by-comment}/out.yaml (100%) rename testdata/yaml-test-suite/{invalid-document-start-marker-in-doublequoted-tring => invalid-document-start-marker-in-doublequoted-string}/error (100%) rename testdata/yaml-test-suite/{invalid-document-start-marker-in-doublequoted-tring => invalid-document-start-marker-in-doublequoted-string}/in.yaml (100%) diff --git a/testdata/yaml-test-suite/explicit-key-and-value-seperated-by-comment/in.json b/testdata/yaml-test-suite/explicit-key-and-value-separated-by-comment/in.json similarity index 100% rename from testdata/yaml-test-suite/explicit-key-and-value-seperated-by-comment/in.json rename to testdata/yaml-test-suite/explicit-key-and-value-separated-by-comment/in.json diff --git a/testdata/yaml-test-suite/explicit-key-and-value-seperated-by-comment/in.yaml b/testdata/yaml-test-suite/explicit-key-and-value-separated-by-comment/in.yaml similarity index 100% rename from testdata/yaml-test-suite/explicit-key-and-value-seperated-by-comment/in.yaml rename to testdata/yaml-test-suite/explicit-key-and-value-separated-by-comment/in.yaml diff --git a/testdata/yaml-test-suite/explicit-key-and-value-seperated-by-comment/out.yaml b/testdata/yaml-test-suite/explicit-key-and-value-separated-by-comment/out.yaml similarity index 100% rename from testdata/yaml-test-suite/explicit-key-and-value-seperated-by-comment/out.yaml rename to testdata/yaml-test-suite/explicit-key-and-value-separated-by-comment/out.yaml diff --git a/testdata/yaml-test-suite/invalid-document-start-marker-in-doublequoted-tring/error b/testdata/yaml-test-suite/invalid-document-start-marker-in-doublequoted-string/error similarity index 100% rename from testdata/yaml-test-suite/invalid-document-start-marker-in-doublequoted-tring/error rename to testdata/yaml-test-suite/invalid-document-start-marker-in-doublequoted-string/error diff --git a/testdata/yaml-test-suite/invalid-document-start-marker-in-doublequoted-tring/in.yaml b/testdata/yaml-test-suite/invalid-document-start-marker-in-doublequoted-string/in.yaml similarity index 100% rename from testdata/yaml-test-suite/invalid-document-start-marker-in-doublequoted-tring/in.yaml rename to testdata/yaml-test-suite/invalid-document-start-marker-in-doublequoted-string/in.yaml diff --git a/yaml_test_suite_test.go b/yaml_test_suite_test.go index 5a54112f..8528fd0e 100644 --- a/yaml_test_suite_test.go +++ b/yaml_test_suite_test.go @@ -34,7 +34,7 @@ var failureTestNames = []string{ "double-quoted-scalar-with-escaped-single-quote", "duplicate-yaml-directive", "escaped-slash-in-double-quotes", - "explicit-key-and-value-seperated-by-comment", //nolint: misspell + "explicit-key-and-value-separated-by-comment", "extra-words-on-yaml-directive", "empty-implicit-key-in-single-pair-flow-sequences", "empty-keys-in-block-and-flow-mapping", @@ -52,7 +52,7 @@ var failureTestNames = []string{ "invalid-comment-after-comma", "invalid-comment-after-end-of-flow-sequence", "invalid-document-end-marker-in-single-quoted-string", - "invalid-document-start-marker-in-doublequoted-tring", + "invalid-document-start-marker-in-doublequoted-string", "invalid-escape-in-double-quoted-string", "invalid-tag", "key-with-anchor-after-missing-explicit-mapping-value",