Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Jan 24, 2021
1 parent a96bf4e commit 6b513ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curtsies/formatstringarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def assertFSArraysEqual(a, b):
assert isinstance(a, FSArray)
assert isinstance(b, FSArray)
assert (
a.width == b.width and a.hight == b.hight
a.width == b.width and a.height == b.height
), f"fsarray dimensions do not match: {a.shape} {b.shape}"
for i, (a_row, b_row) in enumerate(zip(a, b)):
assert a_row == b_row, "FSArrays differ first on line {}:\n{}".format(
Expand Down

0 comments on commit 6b513ae

Please sign in to comment.