Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2020-04-28 13:42:40 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-04-28 13:48:29 +0300
commita7bd8356448efbeb6fc10c0e695f9490219560c5 (patch)
tree71194c005f0056f74ce00d59c8aa52b314899d89 /tests
parentb9f422c4be9c27bb47e5305bad2c91901719100e (diff)
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.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_bundled_modules.py2
1 files changed, 1 insertions, 1 deletions
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