Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/test_direct.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))

Expand Down