Skip to content

Commit

Permalink
Fix flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed May 4, 2011
1 parent c33e787 commit 0fa5e3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_girl_friday.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def test_should_provide_status
refute_nil actual
refute_nil actual['image_crawler']
metrics = actual['image_crawler']
assert_equal total, metrics[:total_queued]
assert metrics[:total_queued] > 0
assert metrics[:total_queued] <= total
assert_equal 3, metrics[:pool_size]
assert_equal 3, metrics[:busy]
assert_equal 0, metrics[:ready]
Expand Down

0 comments on commit 0fa5e3b

Please sign in to comment.