Skip to content

Commit

Permalink
Fix path in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sov-trotter committed Aug 26, 2020
1 parent fadaa78 commit 07f210c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_tables.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import ArchGDAL; const AG = ArchGDAL
using Tables

@testset "Tables Support" begin
dataset = AG.read("point.geojson")
dataset1 = AG.read("multi_geom.csv", options = ["GEOM_POSSIBLE_NAMES=point,linestring", "KEEP_GEOM_COLUMNS=NO"])
dataset = AG.read(joinpath(@__DIR__, "data/point.geojson"))
dataset1 = AG.read(joinpath(@__DIR__, "data/multi_geom.csv"), options = ["GEOM_POSSIBLE_NAMES=point,linestring", "KEEP_GEOM_COLUMNS=NO"])
@test dataset isa ArchGDAL.IDataset
@test dataset1 isa ArchGDAL.IDataset
layer = AG.getlayer(dataset, 0)
Expand Down

0 comments on commit 07f210c

Please sign in to comment.