From 05fe5acfeace283efa5cae778a25b538f5f5fa79 Mon Sep 17 00:00:00 2001 From: Priyank Date: Thu, 25 Jun 2026 11:24:41 +0530 Subject: [PATCH] fix: rename JSON test fixtures with `..` in filename The JSON-test-suite fixtures n_number_-1.0..json, n_number_-2..json, and n_structure_angle_bracket_..json contain `..` in their filenames. golang.org/x/mod/zip's CheckFilePath rejects any path component containing `..`, which causes module proxies such as Athens to fail when fetching and caching this module: unzip ...smithy-go/@v/v1.27.2.zip: malformed file path "transport/http/protocol/internal/json/testdata/test_parsing/n_number_-1.0..json": double dot Drop one of the trailing dots in each filename so the paths pass module zip validation. These fixtures are loaded by directory walk in the parsing tests, so no code references need updating. Co-Authored-By: Claude Opus 4.7 --- .../test_parsing/{n_number_-1.0..json => n_number_-1.0.json} | 0 .../testdata/test_parsing/{n_number_-2..json => n_number_-2.json} | 0 ...cture_angle_bracket_..json => n_structure_angle_bracket_.json} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename transport/http/protocol/internal/json/testdata/test_parsing/{n_number_-1.0..json => n_number_-1.0.json} (100%) rename transport/http/protocol/internal/json/testdata/test_parsing/{n_number_-2..json => n_number_-2.json} (100%) rename transport/http/protocol/internal/json/testdata/test_parsing/{n_structure_angle_bracket_..json => n_structure_angle_bracket_.json} (100%) diff --git a/transport/http/protocol/internal/json/testdata/test_parsing/n_number_-1.0..json b/transport/http/protocol/internal/json/testdata/test_parsing/n_number_-1.0.json similarity index 100% rename from transport/http/protocol/internal/json/testdata/test_parsing/n_number_-1.0..json rename to transport/http/protocol/internal/json/testdata/test_parsing/n_number_-1.0.json diff --git a/transport/http/protocol/internal/json/testdata/test_parsing/n_number_-2..json b/transport/http/protocol/internal/json/testdata/test_parsing/n_number_-2.json similarity index 100% rename from transport/http/protocol/internal/json/testdata/test_parsing/n_number_-2..json rename to transport/http/protocol/internal/json/testdata/test_parsing/n_number_-2.json diff --git a/transport/http/protocol/internal/json/testdata/test_parsing/n_structure_angle_bracket_..json b/transport/http/protocol/internal/json/testdata/test_parsing/n_structure_angle_bracket_.json similarity index 100% rename from transport/http/protocol/internal/json/testdata/test_parsing/n_structure_angle_bracket_..json rename to transport/http/protocol/internal/json/testdata/test_parsing/n_structure_angle_bracket_.json