We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0149cc4 commit 610f34dCopy full SHA for 610f34d
test/test_mutable_list.jl
@@ -97,7 +97,8 @@
97
@testset "append" begin
98
l2 = MutableLinkedList{Int}(n+1:2n...)
99
append!(l, l2)
100
- @test l == MutableLinkedList{Int}(1:2n...)
+ @test l == MutableLinkedList{Int}(1:2n...)
101
+ @test l2 == MutableLinkedList{Int}()
102
@test collect(l) == collect(MutableLinkedList{Int}(1:2n...))
103
l3 = MutableLinkedList{Int}(1:n...)
104
append!(l3, n+1:2n...)
0 commit comments