windows: adjust PYTHONPATH update in test-status-color.t
On Windows the PATH separator is ";", not ":". The Windows wheel wants it set
with ";".
--- a/tests/test-status-color.t Mon Nov 11 16:41:16 2024 +0100
+++ b/tests/test-status-color.t Mon Nov 11 16:42:20 2024 +0100
@@ -399,9 +399,16 @@
color coding of error message without curses
$ echo 'raise ImportError' > curses.py
+#if windows
+ $ PYTHONPATH="`pwd`;$PYTHONPATH" hg unknowncommand > /dev/null
+ hg: unknown command 'unknowncommand'
+ (use 'hg help' for a list of commands)
+ [10]
+#else
$ PYTHONPATH=`pwd`:$PYTHONPATH hg unknowncommand > /dev/null
hg: unknown command 'unknowncommand'
(use 'hg help' for a list of commands)
[10]
+#endif
$ cd ..