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
Nested uses of ComposeMatchers.compose lose their hierarchical context. For example:
Expected: a person with title "a" and first name "b" and last name "c" and home address is an address with street "d" and city "e"
but: title was "x" and home address street was "y" and city was "z"
This should be improved once #7 writes matchers on separate lines:
Expected: a person with title "a"
and first name "b"
and last name "c"
and home address is an address with street "d"
and city "e"
but: title was "x"
and home address street was "y"
and city was "z"
We should then try to indicate hierarchy with deep indentation:
Expected: a person with title "a"
and first name "b"
and last name "c"
and home address is an address with street "d"
and city "e"
but: title was "x"
and home address street was "y"
and city was "z"
The text was updated successfully, but these errors were encountered:
Nested uses of
ComposeMatchers.compose
lose their hierarchical context. For example:This should be improved once #7 writes matchers on separate lines:
We should then try to indicate hierarchy with deep indentation:
The text was updated successfully, but these errors were encountered: