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 26c414f commit e6ff871Copy full SHA for e6ff871
src/FactCheck.jl
@@ -120,15 +120,9 @@ function Base.show(io::IO, e::Error)
120
end
121
122
function Base.show(io::IO, s::Success)
123
- if s.rhs == :fact_throws_error
124
- println(io, "\n<IT::>", replace_lf(s.meta.msg != nothing ? "$(s.meta.msg)" : "Throws Error"))
125
- println(io, "\n<PASSED::>Test Passed")
126
- println(io, "\n<COMPLETEDIN::>")
127
- else
128
- println(io, "\n<IT::>", replace_lf(format_fact(s.expr)))
129
130
131
- end
+ println(io, "\n<IT::>", replace_lf(format_fact(s.expr)))
+ println(io, "\n<PASSED::>Test Passed")
+ println(io, "\n<COMPLETEDIN::>")
132
133
134
function Base.show(io::IO, ::Pending)
0 commit comments