We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4d5dec commit 290efc6Copy full SHA for 290efc6
1 file changed
bpython/test/test_curtsies_painting.py
@@ -98,7 +98,7 @@ def test_history_is_cleared(self):
98
99
class TestCurtsiesPaintingSimple(CurtsiesPaintingTest):
100
def test_startup(self):
101
- screen = fsarray([cyan(">>> ")])
+ screen = fsarray([cyan(">>> ")], width=10)
102
self.assert_paint(screen, (0, 4))
103
104
def test_enter_text(self):
@@ -112,8 +112,9 @@ def test_enter_text(self):
112
+ yellow("+")
113
+ cyan(" ")
114
+ green("1")
115
- )
116
- ]
+ ),
+ ],
117
+ width=10,
118
)
119
self.assert_paint(screen, (0, 9))
120
0 commit comments