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__))