Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Sep 23, 2024
1 parent c242761 commit 957b057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ def test_xplot_not_changing_geo_selection_components(
gen_func = getattr(mapdl, gen_func)

if entity == "LINE":
l0 = mapdl.k("", (0, 0, 0, 0))
l0 = mapdl.k("", 0, 0, 0)
l1 = mapdl.k("", *arg1)
mapdl.l(l0, l1)
else:
Expand All @@ -1230,7 +1230,7 @@ def test_xplot_not_changing_geo_selection_components(
mapdl.cmsel("u", "select1")

if entity == "LINE":
l0 = mapdl.k("", (0, 0, 0, 0))
l0 = mapdl.k("", 0, 0, 0)
l1 = mapdl.k("", *arg2)
mapdl.l(l0, l1)
else:
Expand Down

0 comments on commit 957b057

Please sign in to comment.