summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2016-12-02 22:59:39 +0100
committerTim Graham <timograham@gmail.com>2016-12-02 16:59:39 -0500
commitb059ddf0660adf12a8bc0ea57fc0b9d1db9aed74 (patch)
treeb1efe7d7bfa7cc57953034b93939010d8d575142 /tests
parent7ed456063b89aa39b72b89067f05c56ba6f9c487 (diff)
Fixed #27561 -- Added Oracle support for binary "or" operator.
Removed DatabaseFeatures.supports_bitwise_or feature (unused, always True).
Diffstat (limited to 'tests')
-rw-r--r--tests/expressions/tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/expressions/tests.py b/tests/expressions/tests.py
index c6daa504b1..120bf81d1a 100644
--- a/tests/expressions/tests.py
+++ b/tests/expressions/tests.py
@@ -741,7 +741,6 @@ class ExpressionOperatorTests(TestCase):
self.assertEqual(Number.objects.get(pk=self.n.pk).integer, 40)
self.assertEqual(Number.objects.get(pk=self.n.pk).float, Approximate(15.500, places=3))
- @skipUnlessDBFeature('supports_bitwise_or')
def test_lefthand_bitwise_or(self):
# LH Bitwise or on integers
Number.objects.filter(pk=self.n.pk).update(integer=F('integer').bitor(48))