summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-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])