From 2005ea9313f841721fe3ff53e6412cc9e47bfc9a Mon Sep 17 00:00:00 2001 From: spo Date: Fri, 18 Dec 2015 16:16:03 +0300 Subject: [PATCH] [PythonAPI] Remove the word shaper from some places in PythonAPI --- src/PythonAPI/CMakeLists.txt | 2 +- src/PythonAPI/Test/{TestShaper.py => TestPythonAPI.py} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/PythonAPI/Test/{TestShaper.py => TestPythonAPI.py} (56%) diff --git a/src/PythonAPI/CMakeLists.txt b/src/PythonAPI/CMakeLists.txt index 03df03f58..33337d6e3 100644 --- a/src/PythonAPI/CMakeLists.txt +++ b/src/PythonAPI/CMakeLists.txt @@ -10,7 +10,7 @@ INSTALL(FILES shaper.py DESTINATION PythonAPI) INCLUDE(UnitTest) ADD_UNIT_TESTS( - TestShaper.py + TestPythonAPI.py TestModel.py TestSketcherAddPoint.py diff --git a/src/PythonAPI/Test/TestShaper.py b/src/PythonAPI/Test/TestPythonAPI.py similarity index 56% rename from src/PythonAPI/Test/TestShaper.py rename to src/PythonAPI/Test/TestPythonAPI.py index 09c751bd8..e1fe33712 100644 --- a/src/PythonAPI/Test/TestShaper.py +++ b/src/PythonAPI/Test/TestPythonAPI.py @@ -1,6 +1,6 @@ import unittest -from shaper import model -from shaper import geom +import model +import geom if __name__ == "__main__": unittest.main() -- 2.39.2