File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ macro_rules! signed_check {
202
202
"`({negative_n}).checked_isqrt()` should be `None`, as {negative_n} is negative." ,
203
203
) ;
204
204
205
- :: std:: panic:: catch_unwind( :: core:: panic:: AssertUnwindSafe ( || ( -n) . isqrt( ) ) ) . expect_err(
205
+ std:: panic:: catch_unwind( core:: panic:: AssertUnwindSafe ( || ( -n) . isqrt( ) ) ) . expect_err(
206
206
& format!( "`({negative_n}).isqrt()` should have panicked, as {negative_n} is negative." )
207
207
) ;
208
208
}
@@ -222,7 +222,7 @@ macro_rules! unsigned_check {
222
222
if n > 0 {
223
223
assert_eq!(
224
224
n. isqrt( ) ,
225
- :: core:: num:: NonZero :: <$T>:: new( n)
225
+ core:: num:: NonZero :: <$T>:: new( n)
226
226
. expect(
227
227
"Was not able to create a new `NonZero` value from a nonzero number."
228
228
)
You can’t perform that action at this time.
0 commit comments