Skip to content

Commit d07f241

Browse files
committed
adapt to master updates
1 parent 4479a8a commit d07f241

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/fmt.jl

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ i = 1234567
2020
@test fmt(i) == "1234567"
2121
@test fmt(i,:commas) == "1,234,567"
2222

23+
@test_throws ErrorException fmt_default(Real)
24+
@test_throws ErrorException fmt_default(Complex)
25+
2326
@test fmt(2 - 3im, 10) == " 2 - 3im"
2427
@test fmt(pi - 3im, 15, 2) == " 3.14 - 3.00im"
2528

0 commit comments

Comments
 (0)