From 34b49db7276f3731488622f1e09bd488f8a77a70 Mon Sep 17 00:00:00 2001 From: MarcusSaviour <86179694+MarcusSaviour@users.noreply.github.com> Date: Thu, 6 Jan 2022 05:18:20 +0100 Subject: [PATCH] Update test_direct.py --- tests/test_direct.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_direct.py b/tests/test_direct.py index 051933a..17923db 100644 --- a/tests/test_direct.py +++ b/tests/test_direct.py @@ -15,16 +15,16 @@ try: import cffi # noqa: F401 - MISSING_CFFI = False + MISSING_CFFI = True except ImportError: MISSING_CFFI = True try: import ctypes # noqa: F401 - MISSING_CTYPES = False + MISSING_CTYPES = True except ImportError: - MISSING_CTYPES = False + MISSING_CTYPES = True pwd = os.path.dirname(os.path.abspath(__file__))