diff --git a/CHANGELOG.md b/CHANGELOG.md index cd715da5f..d341bf889 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * `ERC2771Context`: use private variable from storage to store the forwarder address. Fixes issues where `_msgSender()` was not callable from constructors. ([#2754](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2754)) * `EnumerableSet`: add `values()` functions that returns an array containing all values in a single call. ([#2768](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2768)) * `Governor`: added a modular system of `Governor` contracts based on `GovernorAlpha` and `GovernorBravo`. ([#2672](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2672)) + * Fix hierarchy inconsistencies between `contracts` and `test` introduced during the 4.0 repo refactor. ([#2814](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2814)) ## 4.2.0 (2021-06-30) diff --git a/test/utils/PaymentSplitter.test.js b/test/finance/PaymentSplitter.test.js similarity index 100% rename from test/utils/PaymentSplitter.test.js rename to test/finance/PaymentSplitter.test.js diff --git a/test/utils/Initializable.test.js b/test/proxy/utils/Initializable.test.js similarity index 100% rename from test/utils/Initializable.test.js rename to test/proxy/utils/Initializable.test.js diff --git a/test/proxy/UUPS/UUPSUpgradeable.test.js b/test/proxy/utils/UUPSUpgradeable.test.js similarity index 100% rename from test/proxy/UUPS/UUPSUpgradeable.test.js rename to test/proxy/utils/UUPSUpgradeable.test.js