Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
arun3688 committed Dec 6, 2024
1 parent a44f0ab commit 3af0318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ArrayDimension.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_ArrayDimension(self):
omc.sendExpression("getErrorString()")

result = omc.sendExpression("getComponents(A)")
assert result[-1][-1] == ('y+1',9), f"array dimension does not match the expected value. Got: {result[-1][-1]}, Expected: {('y+1', 9)}"
assert result[-1][-1] == ('y + 1', 10), f"array dimension does not match the expected value. Got: {result[-1][-1]}, Expected: {('y + 1', 10)}"

omc.__del__()
shutil.rmtree(tempdir, ignore_errors= True)
Expand Down

0 comments on commit 3af0318

Please sign in to comment.