mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-23 08:47:47 +02:00
...
This commit is contained in:
@@ -16,7 +16,7 @@ class TestDataTypes(BaseTest):
|
|||||||
lb = LineBuf(2, 3)
|
lb = LineBuf(2, 3)
|
||||||
for y in range(2):
|
for y in range(2):
|
||||||
line = lb.line(y)
|
line = lb.line(y)
|
||||||
self.ae(str(line), ' '*3)
|
self.ae(str(line), ' ' * 3)
|
||||||
for x in range(3):
|
for x in range(3):
|
||||||
self.ae(line[x], ' ')
|
self.ae(line[x], ' ')
|
||||||
with self.assertRaises(ValueError):
|
with self.assertRaises(ValueError):
|
||||||
|
|||||||
Reference in New Issue
Block a user