File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ def test_is_platform() -> None:
5353 for fullname , message in zip (fully_qualified_names , messages ):
5454 assert 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 purpose of 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+ # These assertions exactly reproduce the expressions in the code under test, so they
57+ # are not good for testing that the values are correct. Instead, their purpose is 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.
6060 assert is_win == (os .name == "nt" )
6161 assert is_posix == (os .name == "posix" )
6262 assert is_darwin == (sys .platform == "darwin" )
You can’t perform that action at this time.
0 commit comments