From ce420f169c13c01e620763d72bff1ad23c81dd02 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Thu, 1 Aug 2019 17:49:36 -0700 Subject: [PATCH] Test right identity for append!! --- test/test_initials.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_initials.jl b/test/test_initials.jl index 2c3865c9..f132e592 100644 --- a/test/test_initials.jl +++ b/test/test_initials.jl @@ -8,6 +8,7 @@ using InitialValues: Init, hasinitialvalue @test hasinitialvalue(append!!) @test push!!(Init(push!!), 1) == [1] @test append!!(Init(append!!), [1]) == [1] + @test append!!([1], Init(append!!)) == [1] end end # module