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 {
202202 "`({negative_n}).checked_isqrt()` should be `None`, as {negative_n} is negative." ,
203203 ) ;
204204
205- :: std:: panic:: catch_unwind( :: core:: panic:: AssertUnwindSafe ( || ( -n) . isqrt( ) ) ) . expect_err(
205+ std:: panic:: catch_unwind( core:: panic:: AssertUnwindSafe ( || ( -n) . isqrt( ) ) ) . expect_err(
206206 & format!( "`({negative_n}).isqrt()` should have panicked, as {negative_n} is negative." )
207207 ) ;
208208 }
@@ -222,7 +222,7 @@ macro_rules! unsigned_check {
222222 if n > 0 {
223223 assert_eq!(
224224 n. isqrt( ) ,
225- :: core:: num:: NonZero :: <$T>:: new( n)
225+ core:: num:: NonZero :: <$T>:: new( n)
226226 . expect(
227227 "Was not able to create a new `NonZero` value from a nonzero number."
228228 )
You can’t perform that action at this time.
0 commit comments