@@ -87,7 +87,7 @@ mod dynamic_array {
8787 assert_eq (expected_slot , dynamic_array (slot , 2 , 7 ));
8888 }
8989
90- #[test(should_fail_with = "attempt to add with overflow")]
90+ #[test(should_fail_with = "Attempt to add with overflow")]
9191 fn fail_overflow () {
9292 let slot = from_field (6 );
9393 let _ = dynamic_array (slot , 2 , MAX_FIELD_VALUE );
@@ -121,7 +121,7 @@ mod dynamic_array_with_precalculated_slot {
121121 assert_eq (expected_slot , dynamic_array_with_precalculated_slot (slot , 10 , 1 _000 _000 _000 ));
122122 }
123123
124- #[test(should_fail_with = "attempt to add with overflow")]
124+ #[test(should_fail_with = "Attempt to add with overflow")]
125125 fn fail_overflow () {
126126 let slot = from ([0xfe ; 32 ]);
127127 let _ = dynamic_array_with_precalculated_slot (slot , 2 , MAX_FIELD_VALUE );
@@ -142,7 +142,7 @@ mod struct_slot {
142142 assert_eq (expected_slot , struct_slot (slot , 256 ));
143143 }
144144
145- #[test(should_fail_with = "attempt to add with overflow")]
145+ #[test(should_fail_with = "Attempt to add with overflow")]
146146 fn overflow () {
147147 let slot = from ([0xff ; 32 ]);
148148 let _ = struct_slot (slot , 256 );
0 commit comments