Skip to content

Commit a43143b

Browse files
committed
Fixed number of available modules
1 parent 33473b9 commit a43143b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/core_wrapper_features_unittest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ def test_import_all_modules(self) -> None:
812812
pythonocc_core_path = OCC.Core.__path__[0]
813813
available_core_modules = glob.glob(os.path.join(pythonocc_core_path, "*.py"))
814814
nb_available_modules = len(available_core_modules)
815-
self.assertEqual(nb_available_modules, 302)
815+
self.assertEqual(nb_available_modules, 304)
816816

817817
# try to import the module
818818
for core_module in available_core_modules:

0 commit comments

Comments
 (0)