From 6285f6c7f6e95cfac71140163906a036ec916105 Mon Sep 17 00:00:00 2001 From: Anderson Chauphan Date: Fri, 9 Feb 2024 14:55:34 -0700 Subject: [PATCH] Fix type of ExampleExtractBuildNameStrategy class (#600) Example class did not include the 'Example' prefix. --- .../example_cdash_analyze_and_report_random_failures.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ci_support/example_cdash_analyze_and_report_random_failures.py b/test/ci_support/example_cdash_analyze_and_report_random_failures.py index 6ac94e6f3..72da4853e 100755 --- a/test/ci_support/example_cdash_analyze_and_report_random_failures.py +++ b/test/ci_support/example_cdash_analyze_and_report_random_failures.py @@ -13,7 +13,7 @@ def main(): cdashAnalyzeAndReportRandomFailures = \ CDARRF.CDashAnalyzeReportRandomFailuresDriver( ExampleVersionInfoStrategy(), - ExtractBuildNameStrategy()) + ExampleExtractBuildNameStrategy()) cdashAnalyzeAndReportRandomFailures.runDriver() @@ -29,7 +29,7 @@ def getTargetTopicSha1s(self, buildData): def checkTargetTopicRandomFailure(self, targetTopicPair, knownTargetTopicPairs): return targetTopicPair in knownTargetTopicPairs -class ExtractBuildNameStrategy: +class ExampleExtractBuildNameStrategy: pass