Skip to content

Commit

Permalink
Fixed number of available modules
Browse files Browse the repository at this point in the history
  • Loading branch information
tpaviot committed Feb 2, 2021
1 parent 33473b9 commit a43143b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core_wrapper_features_unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ def test_import_all_modules(self) -> None:
pythonocc_core_path = OCC.Core.__path__[0]
available_core_modules = glob.glob(os.path.join(pythonocc_core_path, "*.py"))
nb_available_modules = len(available_core_modules)
self.assertEqual(nb_available_modules, 302)
self.assertEqual(nb_available_modules, 304)

# try to import the module
for core_module in available_core_modules:
Expand Down

0 comments on commit a43143b

Please sign in to comment.