Skip to content

Commit 6b513ae

Browse files
committed
Fix typo
1 parent a96bf4e commit 6b513ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

curtsies/formatstringarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def assertFSArraysEqual(a, b):
302302
assert isinstance(a, FSArray)
303303
assert isinstance(b, FSArray)
304304
assert (
305-
a.width == b.width and a.hight == b.hight
305+
a.width == b.width and a.height == b.height
306306
), f"fsarray dimensions do not match: {a.shape} {b.shape}"
307307
for i, (a_row, b_row) in enumerate(zip(a, b)):
308308
assert a_row == b_row, "FSArrays differ first on line {}:\n{}".format(

0 commit comments

Comments
 (0)