From a7bd8356448efbeb6fc10c0e695f9490219560c5 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 28 Apr 2020 12:42:40 +0200 Subject: Fix Python bundled module test error We don't bundle cffi, rather the ffi library is used for ctypes. This test is currently passing even when there are errors, that will be fixed next. --- tests/python/bl_bundled_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/python') diff --git a/tests/python/bl_bundled_modules.py b/tests/python/bl_bundled_modules.py index 3ef5040af01..d3fe2861d9e 100644 --- a/tests/python/bl_bundled_modules.py +++ b/tests/python/bl_bundled_modules.py @@ -21,7 +21,7 @@ # Test that modules we ship with our Python installation are available import bz2 -import cffi +import ctypes import lzma import numpy import sqlite3 -- cgit v1.2.3