From 68a439a18da17a65555832eff0a7c2090655b583 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sun, 11 Jan 2015 21:18:56 +0100 Subject: 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. --- tests/model_fields/tests.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/model_fields') 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: -- cgit v1.3