From cf7b016f5f9b7f833fd39c94bf81ee6dc6bec395 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 26 Jul 2024 06:33:00 +0000 Subject: [PATCH] Update unittest with new export name. --- aidge_core/unit_tests/test_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aidge_core/unit_tests/test_export.py b/aidge_core/unit_tests/test_export.py index 3061d7940..7b6caf523 100644 --- a/aidge_core/unit_tests/test_export.py +++ b/aidge_core/unit_tests/test_export.py @@ -67,7 +67,7 @@ class test_export(unittest.TestCase): initFiller(model) # Export model - aidge_core.export(self.EXPORT_PATH, model) + aidge_core.serialize_to_cpp(self.EXPORT_PATH, model) self.assertTrue(self.EXPORT_PATH.is_dir(), "Export folder has not been generated") os.makedirs(self.EXPORT_PATH / "build", exist_ok=True) -- GitLab