From 48ff6b940f70462824b07513ab2607f8bd126662 Mon Sep 17 00:00:00 2001 From: mfw78 Date: Thu, 30 Jul 2026 09:48:25 +0000 Subject: [PATCH] fix: rename the last ComposableCoW-cased test filename `test/ComposableCoW.t.sol` was missed by the rename in #44. The pattern used there matched `test/ComposableCoW.*.t.sol`, which requires a middle segment, so the one file without one slipped through. Its contents were renamed correctly, which is why a content search over file bodies did not catch it. Filename only: the contract inside is already `ComposableCowTest` and nothing references the path. --- test/{ComposableCoW.t.sol => ComposableCow.t.sol} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/{ComposableCoW.t.sol => ComposableCow.t.sol} (100%) diff --git a/test/ComposableCoW.t.sol b/test/ComposableCow.t.sol similarity index 100% rename from test/ComposableCoW.t.sol rename to test/ComposableCow.t.sol