From 7cd722b90d189a526b6efdabec386f16c27046fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Corbin?= Date: Mon, 12 Aug 2019 18:28:17 +0200 Subject: [PATCH] Try to make it work with sqlite --- tests/test_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_filters.py b/tests/test_filters.py index cf361959c..b9c777a17 100644 --- a/tests/test_filters.py +++ b/tests/test_filters.py @@ -701,7 +701,7 @@ if postgres_fields: fields = '__all__' -@pytest.mark.skipif('not postgres_fields') +@pytest.mark.skipif(postgres_fields is None) class JSONOrderingFilterTests(TestCase): def test_order_by_json_field(self):