File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ static void ensure_tag_pattern_match(git_repository *repo,
2020 int already_found [MAX_USED_TAGS ] = { 0 };
2121 git_strarray tag_list ;
2222 int error = 0 ;
23- size_t sucessfully_found = 0 ;
23+ size_t successfully_found = 0 ;
2424 size_t i , j ;
2525
2626 cl_assert (data -> expected_matches <= MAX_USED_TAGS );
@@ -42,12 +42,12 @@ static void ensure_tag_pattern_match(git_repository *repo,
4242 if (!already_found [j ] && !strcmp (data -> expected_results [j ], tag_list .strings [i ]))
4343 {
4444 already_found [j ] = 1 ;
45- sucessfully_found ++ ;
45+ successfully_found ++ ;
4646 break ;
4747 }
4848 }
4949 }
50- cl_assert_equal_i ((int )sucessfully_found , (int )data -> expected_matches );
50+ cl_assert_equal_i ((int )successfully_found , (int )data -> expected_matches );
5151
5252exit :
5353 git_strarray_dispose (& tag_list );
You can’t perform that action at this time.
0 commit comments