diff --git a/NEWS.md b/NEWS.md index 6ad4e28c44c86..5e8f35fd77543 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1281,7 +1281,7 @@ Deprecated or removed * The functions `eigs` and `svds` have been moved to the `Arpack.jl` package ([#27616]). - * `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 25a11959812cc..c2fc783547917 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)