Skip to content

Commit

Permalink
Tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Feb 8, 2013
1 parent 7b2b37f commit eafc9ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ If you're looking for versions prior to 3.0.x you should go to :ref:`history`.
- Multiprocessing logger is now configured with loglevel ``ERROR``
by default.

You can still set the :envvar:`MP_LOG` environment variable
to set it to value of the `--loglevel` argument.
Since 3.0 the multiprocessing loggers were disabled by default
(only configured when the :envvar:`MP_LOG` environment variable was set).

.. _version-3.0.13:

Expand Down
2 changes: 1 addition & 1 deletion celery/tests/backends/test_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_on_chord_part_return(self, setresult):
self.assertFalse(deps.join_native.called)

tb.on_chord_part_return(task)
deps.join_native.assert_called_with(propagate=True)
deps.join_native.assert_called_with(propagate=False)
deps.delete.assert_called_with()

finally:
Expand Down
2 changes: 1 addition & 1 deletion celery/tests/backends/test_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def test_on_chord_part_return(self, setresult):

b.client.incr.return_value = len(deps)
b.on_chord_part_return(task)
deps.join_native.assert_called_with(propagate=True)
deps.join_native.assert_called_with(propagate=False)
deps.delete.assert_called_with()

self.assertTrue(b.client.expire.call_count)
Expand Down

0 comments on commit eafc9ef

Please sign in to comment.