@@ -53,10 +53,10 @@ def test_is_platform() -> None:
5353for fullname ,message in zip (fully_qualified_names ,messages ):
5454assert message .startswith (_MESSAGE_LEADER .format (fullname ))
5555
56- # These exactly reproduce the expressions in the code under test, so they are not
57- # good for testing that the values are correct. Instead,the purposeof this test is
58- #to ensure that any dynamic machinery put in place in git.compat to cause warnings
59- #to be issued does not get in the way of the intended values being accessed.
56+ # Theseassertions exactly reproduce the expressions in the code under test, so they
57+ #are not good for testing that the values are correct. Instead,their purposeis to
58+ # ensure that any dynamic machinery put in place in git.compat to cause warnings to
59+ # be issued does not get in the way of the intended values being accessed.
6060assert is_win == (os .name == "nt" )
6161assert is_posix == (os .name == "posix" )
6262assert is_darwin == (sys .platform == "darwin" )