Skip to content

Commit

Permalink
Update test_builtinCAD.py
Browse files Browse the repository at this point in the history
Rename function
  • Loading branch information
YuXHe15 authored Oct 25, 2023
1 parent 25b5d21 commit cd96a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_builtinCAD.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_duplication_check():
assert(pnt3 is pnt31)
assert(pnt1 is not pnt2)

def test_pnt_coord_auto_fill():
def test_pnt_coord_auto_completion():
point1 = pnt([2,3])
point2 = pnt([])
point3 = pnt([2])
Expand All @@ -25,4 +25,4 @@ def test_pnt():
pnt1 = Pnt([2,3])
assert(np.array_equal(pnt1.value,np.array([2,3,0])))
assert(pnt1.type == 0)
assert(isinstance(pnt1.occ_pnt, gp_Pnt))
assert(isinstance(pnt1.occ_pnt, gp_Pnt))

0 comments on commit cd96a05

Please sign in to comment.