Merge "Typo fix s/cadidate/candidate/"

This commit is contained in:
Zuul 2019-02-20 02:40:29 +00:00 committed by Gerrit Code Review
commit c33c6e62d5
1 changed files with 2 additions and 2 deletions

View File

@ -45,10 +45,10 @@ class TestFindModifiedCandidateFiles(base.ElectionTestCase):
def test_find_modified_candidate_files_all_good(self, mock_check_output):
check_output = (('configuration.yaml\n'
'openstack_election/__init__py\n'
'%(path)s/cadidate\n'
'%(path)s/candidate\n'
'%(path)s/.placeholder\n'
) % ({'path': utils.CANDIDATE_PATH})).encode('utf-8')
expected_filenames = ['%s/cadidate' % utils.CANDIDATE_PATH]
expected_filenames = ['%s/candidate' % utils.CANDIDATE_PATH]
mock_check_output.return_value = check_output
filenames = \
ci_check_all_candidate_files.find_modified_candidate_files()