Skip to content

Commit

Permalink
Fix type of ExampleExtractBuildNameStrategy class (#600)
Browse files Browse the repository at this point in the history
Example class did not include the 'Example' prefix.
  • Loading branch information
achauphan committed Feb 13, 2024
1 parent 3f66ccb commit 6285f6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def main():
cdashAnalyzeAndReportRandomFailures = \
CDARRF.CDashAnalyzeReportRandomFailuresDriver(
ExampleVersionInfoStrategy(),
ExtractBuildNameStrategy())
ExampleExtractBuildNameStrategy())

cdashAnalyzeAndReportRandomFailures.runDriver()

Expand All @@ -29,7 +29,7 @@ def getTargetTopicSha1s(self, buildData):
def checkTargetTopicRandomFailure(self, targetTopicPair, knownTargetTopicPairs):
return targetTopicPair in knownTargetTopicPairs

class ExtractBuildNameStrategy:
class ExampleExtractBuildNameStrategy:
pass


Expand Down

0 comments on commit 6285f6c

Please sign in to comment.