Skip to content

Commit d8df16f

Browse files
authored
[test] Fix errors in Import.py test (#234)
This test had Python2 style prints, and needs to call ClangBuilder.getClangCMakeBuildFactory rather than ClangBuilder.getClangBuildFactory.
1 parent 7933dce commit d8df16f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/buildbot/builders/Import.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

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

9-
print ClangBuilder.getClangBuildFactory()
9+
print(ClangBuilder.getClangCMakeBuildFactory())
1010

11-
print SanitizerBuilder.getSanitizerBuildFactory()
11+
print(SanitizerBuilder.getSanitizerBuildFactory())

0 commit comments

Comments
 (0)