summaryrefslogtreecommitdiff
path: root/tests/raw_query/tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-02-17 14:00:54 -0500
committerTim Graham <timograham@gmail.com>2016-02-17 14:00:54 -0500
commit8fc0fe1ef4de72026c99dc7008b0089e100305c3 (patch)
tree99051e30f9391ecf877e284d8671803e9e8a0263 /tests/raw_query/tests.py
parentfdccc02576ae5a524338f65e629948604d80b4c8 (diff)
Fixed flake8 typo.
Diffstat (limited to 'tests/raw_query/tests.py')
-rw-r--r--tests/raw_query/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/raw_query/tests.py b/tests/raw_query/tests.py
index 5133ae5b55..694684e2f3 100644
--- a/tests/raw_query/tests.py
+++ b/tests/raw_query/tests.py
@@ -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])