Skip to content

Commit

Permalink
Fix a minor typo in test_DataTable.py (#3647)
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
mrrezaie authored Dec 13, 2023
1 parent e565abf commit d17c20e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bindings/Python/tests/test_DataTable.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_vector_rowvector(self):
assert (str(col[0]) == str(row[0]) and
str(col[1]) == str(row[1]) and
str(col[2]) == str(row[2]))
print('Test transpose VectorOVec3 to RowVectorVec3.')
print('Test transpose VectorVec3 to RowVectorVec3.')
row_copy = col.transpose()
assert (str(row_copy[0]) == str(row[0]) and
str(row_copy[1]) == str(row[1]) and
Expand Down

0 comments on commit d17c20e

Please sign in to comment.