@@ -176,7 +176,7 @@ fn tuple_matcher_with_trailing_comma_matches_matching_12_tuple() -> Result<()> {
176176#[ test]
177177fn tuple_matcher_1_has_correct_description_for_match ( ) -> Result < ( ) > {
178178 verify_that ! (
179- ( eq( 1 ) , ) . describe( MatcherResult :: Match ) ,
179+ ( eq:: < i32 , _> ( 1 ) , ) . describe( MatcherResult :: Match ) ,
180180 displays_as( eq( indoc!(
181181 "
182182 is a tuple whose values respectively match:
@@ -188,7 +188,7 @@ fn tuple_matcher_1_has_correct_description_for_match() -> Result<()> {
188188#[ test]
189189fn tuple_matcher_1_has_correct_description_for_mismatch ( ) -> Result < ( ) > {
190190 verify_that ! (
191- ( eq( 1 ) , ) . describe( MatcherResult :: NoMatch ) ,
191+ ( eq:: < i32 , _> ( 1 ) , ) . describe( MatcherResult :: NoMatch ) ,
192192 displays_as( eq( indoc!(
193193 "
194194 is a tuple whose values do not respectively match:
@@ -200,7 +200,7 @@ fn tuple_matcher_1_has_correct_description_for_mismatch() -> Result<()> {
200200#[ test]
201201fn tuple_matcher_2_has_correct_description_for_match ( ) -> Result < ( ) > {
202202 verify_that ! (
203- ( eq( 1 ) , eq( 2 ) ) . describe( MatcherResult :: Match ) ,
203+ ( eq:: < i32 , _> ( 1 ) , eq:: < i32 , _> ( 2 ) ) . describe( MatcherResult :: Match ) ,
204204 displays_as( eq( indoc!(
205205 "
206206 is a tuple whose values respectively match:
@@ -213,7 +213,7 @@ fn tuple_matcher_2_has_correct_description_for_match() -> Result<()> {
213213#[ test]
214214fn tuple_matcher_2_has_correct_description_for_mismatch ( ) -> Result < ( ) > {
215215 verify_that ! (
216- ( eq( 1 ) , eq( 2 ) ) . describe( MatcherResult :: NoMatch ) ,
216+ ( eq:: < i32 , _> ( 1 ) , eq:: < i32 , _> ( 2 ) ) . describe( MatcherResult :: NoMatch ) ,
217217 displays_as( eq( indoc!(
218218 "
219219 is a tuple whose values do not respectively match:
0 commit comments