From 8620e3205b8499760e1fac86098d4b84750ea86a Mon Sep 17 00:00:00 2001 From: juliohm Date: Wed, 28 Jun 2023 23:30:16 +0000 Subject: [PATCH] :robot: Format .jl files --- test/runtests.jl | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index ebf5b5f..127e906 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -235,17 +235,28 @@ savedir = mktempdir() end @testset "save" begin - fnames = ["points.geojson", "points.gpkg", "points.shp", - "lines.geojson", "lines.gpkg", "lines.shp", - "polygons.geojson", "polygons.gpkg", "polygons.shp", - "land.shp", "path.shp", "zone.shp", - "field.kml", "issue32.shp"] + fnames = [ + "points.geojson", + "points.gpkg", + "points.shp", + "lines.geojson", + "lines.gpkg", + "lines.shp", + "polygons.geojson", + "polygons.gpkg", + "polygons.shp", + "land.shp", + "path.shp", + "zone.shp", + "field.kml", + "issue32.shp" + ] # saved and loaded tables are the same for fname in fnames, fmt in [".shp", ".geojson", ".gpkg"] # input and output file names f1 = joinpath(datadir, fname) - f2 = joinpath(savedir, first(splitext(fname))*fmt) + f2 = joinpath(savedir, first(splitext(fname)) * fmt) # load and save table # t1 = GeoTables.load(f1)