You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.
java.lang.AssertionError:
Expected: Optional with an item that matches"bar"
but: was <Optional[foo]>
Expected :Optional with an item that matches"bar"
Actual :<Optional[foo]>
This gets very confusing when using a FeatureMatcher because the FeatureMatcher does not quote its description so it just becomes something like
Expected: Optional with an item that matchesbar
which can be pretty hard to read.
The text was updated successfully, but these errors were encountered:
There is a space character missing in the description of
OptionalMatchers.contains(Matcher<T> matcher)
before the description of the sub-matcher.This produces the following message:
This gets very confusing when using a FeatureMatcher because the FeatureMatcher does not quote its description so it just becomes something like
which can be pretty hard to read.
The text was updated successfully, but these errors were encountered: