Skip to content

Commit 5a44963

Browse files
committed
remove usage of ImmutableArrays
1 parent 8089075 commit 5a44963

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/verify_vertices.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using ImmutableArrays
2-
31
# Setup test axes that will be shared among the tests
42

53
# Shift the axes so that they do not line up with
@@ -111,7 +109,7 @@ end
111109

112110
# Issue #12
113111
x = float(collect(1:3));
114-
y = copy(x);
112+
y = copy(x);
115113
z = eye(3,3);
116114
contours(x,y,z)
117115

@@ -139,7 +137,7 @@ for line in contourlevels.lines
139137
ys .== [v[2] for v in line.vertices]
140138
end
141139

142-
# Test that closed contours are identified correctly
140+
# Test that closed contours are identified correctly
143141
# when ambiguous cells are involved
144142

145143
Z = float([1 1 1 1 1 1

0 commit comments

Comments
 (0)