Skip to content

Commit 3c5bb1e

Browse files
committed
Removed print from tests.
1 parent e1fa4d1 commit 3c5bb1e

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

tests/utils_tests.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ def test_scroll_character_for_character_right_to_left2(self):
119119
expected = list(scroll_text)
120120
cnt = 0
121121
for text in CharacterScroller(self.cfg, **self.argv): # 1, 0, scroll_text, 1, 0):
122-
print("round", str(cnt))
123122
try:
124123
self.assertEqual(expected[cnt], text)
125124
except IndexError:
@@ -139,7 +138,6 @@ def test_scroll_character_for_character_right_to_left(self):
139138
expected.reverse()
140139
cnt = 0
141140
for text in CharacterScroller(self.cfg, **self.argv): # 1, 0, scroll_text, 1, 0):
142-
print("round", str(cnt), " ", text)
143141
try:
144142
self.assertEqual(expected[cnt], text)
145143
except IndexError:

0 commit comments

Comments
 (0)