Skip to content

Commit bbac11c

Browse files
authored
Possible whitespace fix on test_package.mojo
1 parent 7dba473 commit bbac11c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

recipes/mojo-asciichart/test_package.mojo

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ fn main() raises:
1010
data.append(4.0)
1111
data.append(3.0)
1212
data.append(5.0)
13-
13+
1414
# Generate chart - should not crash
1515
var chart = plot(data)
16-
16+
1717
# Basic validation: chart should contain box-drawing chars
1818
if len(chart) < 10:
1919
raise Error("Chart output too short")
20-
20+
2121
# Should contain at least one box-drawing character
2222
var has_box_char = False
2323
for i in range(len(chart)):
2424
var ch = chart[i]
2525
if ch == "" or ch == "" or ch == "" or ch == "" or ch == "" or ch == "":
2626
has_box_char = True
2727
break
28-
28+
2929
if not has_box_char:
3030
raise Error("Chart missing box-drawing characters")
31-
31+
3232
print("✓ All tests passed")

0 commit comments

Comments
 (0)