@@ -376,7 +376,7 @@ def test_rate_with_shorter_shift_limit(self):
376
376
stdout = StringIO ()
377
377
call_command ("worker" , rate_limit = 2 , shift_limit = 1 , stdout = stdout )
378
378
output = stdout .getvalue ()
379
- self .assertTrue ("rate limit 2/s and a shift constraint of 1 seconds" in output )
379
+ self .assertTrue ("rate limit of one job per 2 second(s) and a shift constraint of 1 seconds" in output )
380
380
self .assertEqual (Job .objects .filter (state = Job .STATES .NEW ).count (), 1 )
381
381
self .assertEqual (Job .objects .filter (state = Job .STATES .COMPLETE ).count (), 1 )
382
382
@@ -386,7 +386,7 @@ def test_rate_with_equal_shift_limit(self):
386
386
stdout = StringIO ()
387
387
call_command ("worker" , rate_limit = 1 , shift_limit = 1 , stdout = stdout )
388
388
output = stdout .getvalue ()
389
- self .assertTrue ("rate limit 1/s and a shift constraint of 1 seconds" in output )
389
+ self .assertTrue ("rate limit of one job per 1 second(s) and a shift constraint of 1 seconds" in output )
390
390
self .assertEqual (Job .objects .filter (state = Job .STATES .NEW ).count (), 1 )
391
391
self .assertEqual (Job .objects .filter (state = Job .STATES .COMPLETE ).count (), 1 )
392
392
@@ -396,7 +396,7 @@ def test_rate_with_longer_shift_limit(self):
396
396
stdout = StringIO ()
397
397
call_command ("worker" , rate_limit = 1 , shift_limit = 2 , stdout = stdout )
398
398
output = stdout .getvalue ()
399
- self .assertTrue ("rate limit 1/s and a shift constraint of 2 seconds" in output )
399
+ self .assertTrue ("rate limit of one job per 1 second(s) and a shift constraint of 2 seconds" in output )
400
400
self .assertEqual (Job .objects .filter (state = Job .STATES .NEW ).count (), 0 )
401
401
self .assertEqual (Job .objects .filter (state = Job .STATES .COMPLETE ).count (), 2 )
402
402
@@ -408,10 +408,10 @@ def test_rate_with_two_workers(self):
408
408
stdout = StringIO ()
409
409
call_command ("worker" , rate_limit = 1 , shift_limit = 2 , stdout = stdout )
410
410
output = stdout .getvalue ()
411
- self .assertTrue ("rate limit 1/s and a shift constraint of 2 seconds" in output )
411
+ self .assertTrue ("rate limit of one job per 1 second(s) and a shift constraint of 2 seconds" in output )
412
412
call_command ("worker" , rate_limit = 1 , shift_limit = 1 , stdout = stdout )
413
413
output = stdout .getvalue ()
414
- self .assertTrue ("rate limit 1/s and a shift constraint of 1 seconds" in output )
414
+ self .assertTrue ("rate limit of one job per 1 second(s) and a shift constraint of 1 seconds" in output )
415
415
self .assertEqual (Job .objects .filter (state = Job .STATES .NEW ).count (), 1 )
416
416
self .assertEqual (Job .objects .filter (state = Job .STATES .COMPLETE ).count (), 3 )
417
417
0 commit comments