diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 58a15b3a..8b398e26 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -262,9 +262,9 @@ def scheduler(): else: many_old_base = 0 # ... for suite in SUITES: - if suite = 'unstable': + if suite == 'unstable': suite_many_old = many_old_base*10 # experimental is roughly one tenth of the size of the other suites - elif suite = 'testing': + elif suite == 'testing': suite_many_old = many_old_base*5 # re-schedule testing less than unstable as we care more about unstable and because unstable changes more frequently else: suite_many_old = many_old_base |