From d57061361d5556663c5a59e5d777e9329941d2df Mon Sep 17 00:00:00 2001 From: dbs Date: Wed, 2 Mar 2011 05:14:58 +0000 Subject: [PATCH] Syntax, baby, syntax (for the buildbot) git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2190 9efc2488-bf62-4759-914b-345cdb29e865 --- examples/buildbot.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/buildbot.cfg b/examples/buildbot.cfg index 438c898..02355ed 100644 --- a/examples/buildbot.cfg +++ b/examples/buildbot.cfg @@ -192,16 +192,16 @@ class PerlModuleTestMFHDMadness(shell.PerlModuleTest): total = 0 def has_perl_unit_tests(step): - if (step.build.getProperty('branch') -= 'branches/rel_1_6'): + if (step.build.getProperty('branch') == 'branches/rel_1_6'): return false - elif (step.build.getProperty('branch') -= 'branches/rel_2_0'): + elif (step.build.getProperty('branch') == 'branches/rel_2_0'): return false return true # run the Perl unit tests -eg_factory.addStep( +eg_factory.addStep(PerlModuleTestMFHDMadness( doStepIf=has_perl_unit_tests, - PerlModuleTestMFHDMadness(workdir="build/Open-ILS/src/perlmods") + workdir="build/Open-ILS/src/perlmods") ) # report on the Python code -- 2.43.2