Skip to content

Commit 80b4588

Browse files
committed
exp2py: tests SCL -> stepcode
1 parent e05bfc7 commit 80b4588

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

src/exp2python/python/tests/test_base.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
import sys
3333
import unittest
3434

35-
from SCL.SimpleDataTypes import *
36-
from SCL.TypeChecker import *
37-
from SCL.ConstructedDataTypes import *
38-
from SCL.AggregationDataTypes import *
35+
from stepcode.SimpleDataTypes import *
36+
from stepcode.TypeChecker import *
37+
from stepcode.ConstructedDataTypes import *
38+
from stepcode.AggregationDataTypes import *
3939

4040
#
4141
# Simple data types

src/exp2python/python/tests/test_builtin.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
import sys
3333
import unittest
3434

35-
from SCL.SimpleDataTypes import *
36-
from SCL.TypeChecker import *
37-
from SCL.ConstructedDataTypes import *
38-
from SCL.AggregationDataTypes import *
39-
from SCL.Builtin import *
35+
from stepcode.SimpleDataTypes import *
36+
from stepcode.TypeChecker import *
37+
from stepcode.ConstructedDataTypes import *
38+
from stepcode.AggregationDataTypes import *
39+
from stepcode.Builtin import *
4040

4141
float_epsilon = 1e-8
4242
#

src/exp2python/python/tests/test_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3131

3232
import unittest
33-
from SCL.Part21 import Parser
33+
from stepcode.Part21 import Parser
3434

3535
ShapesSample ="""
3636
ISO-10303-21;

src/exp2python/python/tests/test_unitary_schemas.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
here = os.path.dirname(os.path.abspath(__file__))
3737
sys.path.append(os.path.join(here, "..", "..", "examples", "unitary_schemas"))
3838

39-
from SCL.SCLBase import *
40-
from SCL.SimpleDataTypes import *
41-
from SCL.ConstructedDataTypes import *
42-
from SCL.AggregationDataTypes import *
43-
from SCL.TypeChecker import check_type
39+
from stepcode.SCLBase import *
40+
from stepcode.SimpleDataTypes import *
41+
from stepcode.ConstructedDataTypes import *
42+
from stepcode.AggregationDataTypes import *
43+
from stepcode.TypeChecker import check_type
4444

4545
class TestSelectDataType(unittest.TestCase):
4646
'''

0 commit comments

Comments
 (0)