From d54c897ffaed316d36bb26aa4c90908645718873 Mon Sep 17 00:00:00 2001 From: Alexander Plavin Date: Wed, 28 Feb 2024 07:14:01 -0500 Subject: [PATCH] typo --- test/test_functionlenses.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_functionlenses.jl b/test/test_functionlenses.jl index 3816616b..6b338574 100644 --- a/test/test_functionlenses.jl +++ b/test/test_functionlenses.jl @@ -217,7 +217,7 @@ end # broadcasting in both optic and set, with a user-defined function @accessor f(x) = x+1 - @test (@set f.(first.(A)) .= [10, 20]) == [[9,19], [1,2,3], [1,2,3,4]] + @test (@set f.(first.(A)) .= [10, 20, 30]) == [[9,2], [19,2,3], [29,2,3,4]] end @testset "math" begin