Corrected pre-Python 2.6 syntax incompatibility from r13319. Thanks to Karen Tracey for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13322 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-06-05 12:53:51 +00:00
parent 289f41921e
commit 4290b0d26a
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ class FixtureLoadingTests(TestCase):
def _dumpdata_assert(self, args, output, format='json', natural_keys=False):
new_io = StringIO.StringIO()
management.call_command('dumpdata', *args, format=format, stdout=new_io, use_natural_keys=natural_keys)
management.call_command('dumpdata', *args, **{'format':format, 'stdout':new_io, 'use_natural_keys':natural_keys})
command_output = new_io.getvalue().strip()
self.assertEqual(command_output, output)
@ -236,7 +236,7 @@ if settings.DATABASES[DEFAULT_DB_ALIAS]['ENGINE'] != 'django.db.backends.mysql':
class FixtureTransactionTests(TransactionTestCase):
def _dumpdata_assert(self, args, output, format='json'):
new_io = StringIO.StringIO()
management.call_command('dumpdata', *args, format=format, stdout=new_io)
management.call_command('dumpdata', *args, **{'format':format, 'stdout':new_io})
command_output = new_io.getvalue().strip()
self.assertEqual(command_output, output)