diff --git a/NEWS.md b/NEWS.md index 01ce9db21d95f5..5978b0352014b0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1276,7 +1276,7 @@ Deprecated or removed * `atan2` is now a 2-argument method of `atan` ([#27248]). - * `vecdot` and `norm` are deprecated in favor of `dot` and `norm`, respectively ([#27401]). + * `vecdot` and `vecnorm` are deprecated in favor of `dot` and `norm`, respectively ([#27401]). Command-line option changes --------------------------- diff --git a/stdlib/LinearAlgebra/test/givens.jl b/stdlib/LinearAlgebra/test/givens.jl index 25a11959812cc0..c2fc7835479172 100644 --- a/stdlib/LinearAlgebra/test/givens.jl +++ b/stdlib/LinearAlgebra/test/givens.jl @@ -38,7 +38,7 @@ using LinearAlgebra: rmul!, lmul! @test_throws DimensionMismatch lmul!(G, A) @test_throws DimensionMismatch rmul!(A, adjoint(G)) @test abs.(A) ≈ abs.(hessenberg(Ac).H) - @test norm(R*Matrix{elty}(I, 10, 10)) ≈ one(elty) + @test opnorm(R*Matrix{elty}(I, 10, 10)) ≈ one(elty) I10 = Matrix{elty}(I, 10, 10) G, _ = givens(one(elty),zero(elty),9,10)