eric pouech (@epo) commented about programs/cmd/tests/test_builtins.cmd:
if not "%1"=="" goto :CheckFileSize goto :eof
+:CompareFileSizes
1) it's overkill to test if files exist 2) why not using only (untested): ``` if "%~z1"=="%~z2" (echo passed) else (echo failed) goto :eof ``` (and there's no need to print the filenames)