mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-10-17 15:51:18 +08:00

This commit change the regex to accept more spaces inside the brackets of the TEST_RANGE(). I use clang-format through vscode "editor.formatOnSave": true feature and it produce padding spaces inside the array brackets by default. ```c int a[] = [1, 2]; ``` is changed into ```c int a[] = [ 1, 2 ]; ``` Also, every time I save a file containing a TEST_RANGE() with ctrl + s, it breaks it.