Skip to content

Commit

Permalink
[test] Fix errors in Import.py test (#234)
Browse files Browse the repository at this point in the history
This test had Python2 style prints, and needs to call
ClangBuilder.getClangCMakeBuildFactory rather than
ClangBuilder.getClangBuildFactory.
  • Loading branch information
asb authored Jul 20, 2024
1 parent 7933dce commit d8df16f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/buildbot/builders/Import.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

# Just check that we can instantiate the build factors, what else can we do?

print ClangBuilder.getClangBuildFactory()
print(ClangBuilder.getClangCMakeBuildFactory())

print SanitizerBuilder.getSanitizerBuildFactory()
print(SanitizerBuilder.getSanitizerBuildFactory())

0 comments on commit d8df16f

Please sign in to comment.