Skip to content

Commit 933ff09

Browse files
Copilothackwaly
andcommitted
Fix formatting issues - remove trailing whitespace
Co-authored-by: hackwaly <[email protected]>
1 parent 2efba8a commit 933ff09

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

array/array_test.mbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,6 @@ test "Array::join with Char" {
305305
let chars : Array[Char] = ['h', 'e', 'l', 'l', 'o']
306306
let result = chars.join("")
307307
inspect(result, content="hello")
308-
309308
let chars2 : Array[Char] = ['a', 'b', 'c']
310309
let result2 = chars2.join(", ")
311310
inspect(result2, content="a, b, c")

string/tostringview_char_demo_test.mbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ test "ToStringView for Char - comprehensive demo" {
44
let chars1 : Array[Char] = ['h', 'e', 'l', 'l', 'o']
55
let result1 = chars1.join("")
66
inspect(result1, content="hello")
7-
7+
88
// Test 2: Join with separator
99
let chars2 : Array[Char] = ['a', 'b', 'c', 'd']
1010
let result2 = chars2.join(", ")
1111
inspect(result2, content="a, b, c, d")
12-
12+
1313
// Test 3: Empty array
1414
let chars3 : Array[Char] = []
1515
let result3 = chars3.join("-")
1616
inspect(result3, content="")
17-
17+
1818
// Test 4: Single character
1919
let chars4 : Array[Char] = ['x']
2020
let result4 = chars4.join(" | ")
2121
inspect(result4, content="x")
22-
22+
2323
// Test 5: Unicode characters
2424
let chars5 : Array[Char] = ['🌟', '✨', '🎉']
2525
let result5 = chars5.join(" ")

0 commit comments

Comments
 (0)