From 975f47f7712a8a129c52bb1c783205e2c3c92eee Mon Sep 17 00:00:00 2001 From: Bojun Chai Date: Tue, 21 Apr 2026 08:57:42 +0800 Subject: [PATCH] refactor: rename hill-cipher test dir to __test__ for consistency All other algorithm modules use __test__ as the test directory name. The hill-cipher module was the only outlier using _test_ (single underscores). --- .../hill-cipher/{_test_ => __test__}/hillCipher.test.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/algorithms/cryptography/hill-cipher/{_test_ => __test__}/hillCipher.test.js (100%) diff --git a/src/algorithms/cryptography/hill-cipher/_test_/hillCipher.test.js b/src/algorithms/cryptography/hill-cipher/__test__/hillCipher.test.js similarity index 100% rename from src/algorithms/cryptography/hill-cipher/_test_/hillCipher.test.js rename to src/algorithms/cryptography/hill-cipher/__test__/hillCipher.test.js