@@ -49,13 +49,13 @@ void test_commit_signature__angle_brackets_in_email_are_not_supported(void)
4949
5050void test_commit_signature__create_empties (void )
5151{
52- // can not create a signature with empty name or email
52+ // can create a signature with empty name or email
5353 cl_git_pass (try_build_signature ("nulltoken" , "emeric.fermas@gmail.com" , 1234567890 , 60 ));
5454
55- cl_git_fail (try_build_signature ("" , "emeric.fermas@gmail.com" , 1234567890 , 60 ));
56- cl_git_fail (try_build_signature (" " , "emeric.fermas@gmail.com" , 1234567890 , 60 ));
57- cl_git_fail (try_build_signature ("nulltoken" , "" , 1234567890 , 60 ));
58- cl_git_fail (try_build_signature ("nulltoken" , " " , 1234567890 , 60 ));
55+ cl_git_pass (try_build_signature ("" , "emeric.fermas@gmail.com" , 1234567890 , 60 ));
56+ cl_git_pass (try_build_signature (" " , "emeric.fermas@gmail.com" , 1234567890 , 60 ));
57+ cl_git_pass (try_build_signature ("nulltoken" , "" , 1234567890 , 60 ));
58+ cl_git_pass (try_build_signature ("nulltoken" , " " , 1234567890 , 60 ));
5959}
6060
6161void test_commit_signature__create_one_char (void )
@@ -74,6 +74,6 @@ void test_commit_signature__create_zero_char(void)
7474{
7575 // creating a zero character signature
7676 git_signature * sign ;
77- cl_git_fail (git_signature_new (& sign , "" , "x@y.z" , 1234567890 , 60 ));
78- cl_assert (sign = = NULL );
77+ cl_git_pass (git_signature_new (& sign , "" , "x@y.z" , 1234567890 , 60 ));
78+ cl_assert (sign ! = NULL );
7979}
0 commit comments