BUG: Project names must not contain spaces

Trick for young players here.

I tried to create a new Zephyr project using the Project Wizard in PlatformIO (core 6.1.15, Home 3.4.4), as outlined in the ticket below.

When the project was called “zephyr test” the set up failed, but removing the space as “zephyrtest” worked correctly.

It appears that the second word in the name is being inserted into the make file as an argument which is incorrect. Such as CMakeDetermineTestCompiler.cmake

CMake Error: Could not find cmake module file: CMakeDetermineTestCompiler.cmake
CMake Error: Error required internal CMake variable not set, cmake may not be built correctly.
Missing variable is:
CMAKE_Test_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may not be built correctly.
Missing variable is:
CMAKE_Test_COMPILER
CMake Error: Could not find cmake module file: C:/Users/.../PlatformIO/Projects/Upload Test/.pio/build/nrf52840_dk/CMakeFiles/3.21.3/CMakeTestCompiler.cmake
CMake Error at CMakeLists.txt:3 (project):
No CMAKE_Test_COMPILER could be found.

Can I suggest the the New Project wizard be updated to replace spaces with underscores.
“zephyr test” to “zephyr_test”

Regards
Dave