Skip to content

Commit 234699e

Browse files
authored
Merge pull request #106 from JuliaGeometry/sd/fix_ci
fix CI for nightly
2 parents 2e1ceed + 3303dc4 commit 234699e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ os:
55
- osx
66
- windows
77
julia:
8-
- 1.3
98
- 1.4
109
- 1
1110
- nightly

test/runtests.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -638,9 +638,8 @@ end
638638
@test getproperty(sa, :country_states) isa Array{Any}
639639
@test getproperty(sa, :main) == geom
640640

641-
@test GeometryBasics.getnamestypes(typeof(feat[1])) ==
642-
(LineString{2,Float64,Point{2,Float64},Base.ReinterpretArray{GeometryBasics.Ngon{2,Float64,2,Point{2,Float64}},1,Tuple{Point{2,Float64},Point{2,Float64}},TupleView{Tuple{Point{2,Float64},Point{2,Float64}},2,1,Array{Point{2,Float64},1}}}},
643-
(:country_states, :rainfall), Tuple{String,Float64})
641+
maintype, metanames, metatype = GeometryBasics.getnamestypes(typeof(feat[1]))
642+
@test (metanames, metatype) == ((:country_states, :rainfall), Tuple{String,Float64})
644643

645644

646645
@test StructArrays.createinstance(typeof(feat[1]), LineString([Point(1, (2)^2/6), Point(1*0.86,6), Point(1/3, 1/7)]), "Mumbai", 100) isa typeof(feat[1])

0 commit comments

Comments
 (0)