Fixed flake8 typo.

This commit is contained in:
Tim Graham 2016-02-17 14:00:54 -05:00
parent fdccc02576
commit 8fc0fe1ef4
1 changed files with 1 additions and 1 deletions

View File

@ -311,5 +311,5 @@ class RawQueryTests(TestCase):
def test_decimal_parameter(self):
c = Coffee.objects.create(brand='starbucks', price=20.5)
qs = Coffee.objects.raw("SELECT * FROM raw_query_coffee WHERE price >= %s", params=[Decimal(20)])
qs = Coffee.objects.raw("SELECT * FROM raw_query_coffee WHERE price >= %s", params=[Decimal(20)])
self.assertEqual(list(qs), [c])