haf / expecto

A smooth testing lib for F#. APIs made for humans! Strong testing methodologies for everyone!
Apache License 2.0
663 stars 96 forks source link

Expect.all prints additional quotes for string items #443

Open cmeeren opened 1 year ago

cmeeren commented 1 year ago

I am usingExpect.all with a string array. A test failure prints this:

Expecto.AssertException: . Some elements don't satisfy `asserter`.
Element at index: 1 which is equal to: "" a""

The element is the string " a", but Expecto displays two "".

I assume Expecto uses %A and that this is the reason for this behavior.

This is not terribly important to me, but since I reacted to it, I figured I'd report it.