Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 3c17e45

Browse files
committed
Correct test for Django 1.8+
1 parent db36e5f commit 3c17e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/contrib/django/management/commands/test_raven.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class RavenCommandTest(TestCase):
1515
@patch('raven.contrib.django.management.commands.raven.send_test_message')
1616
def test_basic(self, mock_send_test_message):
17-
call_command('raven', command='test')
17+
call_command('raven', 'test')
1818

1919
mock_send_test_message.assert_called_once_with(
2020
client, {

0 commit comments

Comments
 (0)