We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f7c7d commit 075158fCopy full SHA for 075158f
test/fmt.jl
@@ -20,8 +20,9 @@ i = 1234567
20
@test fmt(i) == "1234567"
21
@test fmt(i,:commas) == "1,234,567"
22
23
-@test_throws ErrorException fmt_default(Real)
24
-@test_throws ErrorException fmt_default(Complex)
+# These are not handled
+#@test_throws ErrorException fmt_default(Real)
25
+#@test_throws ErrorException fmt_default(Complex)
26
27
fmt_default!(Int, :commas, width = 12)
28
@test fmt(i) == " 1,234,567"
0 commit comments