File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 113
113
@test isempty (get_adjacent (adj))
114
114
end
115
115
116
- @testse " copy/deepcopy" begin
116
+ @testset " copy/deepcopy" begin
117
117
tri = triangulate (rand (2 , 50 ))
118
118
adj = get_adjacent (tri)
119
119
adj2 = copy (adj)
Original file line number Diff line number Diff line change @@ -98,11 +98,11 @@ empty!(cache)
98
98
cache = DT. get_cache (tri)
99
99
cache2 = copy (cache)
100
100
@inferred copy (cache2)
101
- @test cache2 == cache && ! (cache2 === cache)
101
+ @test typeof ( cache2) == typeof ( cache) && ! (cache2 === cache)
102
102
103
103
tri = triangulate (rand (2 , 50 ); weights= rand (50 ))
104
104
cache = DT. get_cache (tri)
105
105
cache2 = copy (cache)
106
106
@inferred copy (cache2)
107
- @test cache2 == cache && ! (cache2 === cache)
107
+ @test typeof ( cache2) == typeof ( cache) && ! (cache2 === cache)
108
108
end
You can’t perform that action at this time.
0 commit comments