Fix misspelling of Implementation (#6073)

This commit is contained in:
jonathanmetzman 2021-07-20 07:38:16 -07:00 committed by GitHub
parent d66e974cbe
commit 0a398c892b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -222,15 +222,15 @@ class OSSFuzz(BaseClusterFuzzDeployment):
return None
def upload_latest_build(self): # pylint: disable=no-self-use
"""Noop Impelementation of upload_latest_build."""
"""Noop Implementation of upload_latest_build."""
logging.info('Not uploading latest build because on OSS-Fuzz.')
def upload_corpus(self, target_name): # pylint: disable=no-self-use,unused-argument
"""Noop Impelementation of upload_corpus."""
"""Noop Implementation of upload_corpus."""
logging.info('Not uploading corpus because on OSS-Fuzz.')
def upload_crashes(self): # pylint: disable=no-self-use
"""Noop Impelementation of upload_crashes."""
"""Noop Implementation of upload_crashes."""
logging.info('Not uploading crashes because on OSS-Fuzz.')
def download_corpus(self, target_name):
@ -260,25 +260,25 @@ class NoClusterFuzzDeployment(BaseClusterFuzzDeployment):
ClusterFuzz to use."""
def upload_latest_build(self): # pylint: disable=no-self-use
"""Noop Impelementation of upload_latest_build."""
"""Noop Implementation of upload_latest_build."""
logging.info('Not uploading latest build because no ClusterFuzz '
'deployment.')
def upload_corpus(self, target_name): # pylint: disable=no-self-use,unused-argument
"""Noop Impelementation of upload_corpus."""
"""Noop Implementation of upload_corpus."""
logging.info('Not uploading corpus because no ClusterFuzz deployment.')
def upload_crashes(self): # pylint: disable=no-self-use
"""Noop Impelementation of upload_crashes."""
"""Noop Implementation of upload_crashes."""
logging.info('Not uploading crashes because no ClusterFuzz deployment.')
def download_corpus(self, target_name): # pylint: disable=no-self-use,unused-argument
"""Noop Impelementation of download_corpus."""
"""Noop Implementation of download_corpus."""
logging.info('Not downloading corpus because no ClusterFuzz deployment.')
return self.make_empty_corpus_dir(target_name)
def download_latest_build(self): # pylint: disable=no-self-use
"""Noop Impelementation of download_latest_build."""
"""Noop Implementation of download_latest_build."""
logging.info(
'Not downloading latest build because no ClusterFuzz deployment.')