summaryrefslogtreecommitdiff
path: root/tests/model_fields
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2015-01-11 21:18:56 +0100
committerClaude Paroz <claude@2xlibre.net>2015-01-11 23:34:47 +0100
commit68a439a18da17a65555832eff0a7c2090655b583 (patch)
tree5d18d209b10d2f0054f952791f4edcc5b604aa80 /tests/model_fields
parentd563e3be68369694a3bac1efd7779d8e03bb6a51 (diff)
Removed supports_binary_field flag as all backends support them
It was mainly for MySQL on Python 3, but now the current recommended MySQL driver for Python 3 (mysqlclient) does support binary fields, it is unneeded. Refs #20377.
Diffstat (limited to 'tests/model_fields')
-rw-r--r--tests/model_fields/tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/model_fields/tests.py b/tests/model_fields/tests.py
index 9ef46006e1..897359c0cf 100644
--- a/tests/model_fields/tests.py
+++ b/tests/model_fields/tests.py
@@ -655,7 +655,6 @@ class FileFieldTests(unittest.TestCase):
class BinaryFieldTests(test.TestCase):
binary_data = b'\x00\x46\xFE'
- @test.skipUnlessDBFeature('supports_binary_field')
def test_set_and_retrieve(self):
data_set = (self.binary_data, six.memoryview(self.binary_data))
for bdata in data_set: