From 4b141e53dfe7284cd074895c2ed33f1a5b30cb26 Mon Sep 17 00:00:00 2001 From: Austen Adler Date: Wed, 22 Feb 2023 19:19:48 -0500 Subject: [PATCH] Rename test data files --- docs/generate-test-data.py | 2 +- test-data/{sample-lat-lon.csv => 00-sample-latlon.csv} | 0 ...t-lon-s2cpp-cellid.csv => 01-sample-latlon-s2cpp-cellid.csv} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename test-data/{sample-lat-lon.csv => 00-sample-latlon.csv} (100%) rename test-data/{lat-lon-s2cpp-cellid.csv => 01-sample-latlon-s2cpp-cellid.csv} (100%) diff --git a/docs/generate-test-data.py b/docs/generate-test-data.py index 0051d24..4320255 100644 --- a/docs/generate-test-data.py +++ b/docs/generate-test-data.py @@ -1,5 +1,5 @@ from random import random -with open("sample-lat-lon.csv", "w") as f: +with open("00-sample-latlon.csv", "w") as f: f.write("lat,lon\n") # Edge cases diff --git a/test-data/sample-lat-lon.csv b/test-data/00-sample-latlon.csv similarity index 100% rename from test-data/sample-lat-lon.csv rename to test-data/00-sample-latlon.csv diff --git a/test-data/lat-lon-s2cpp-cellid.csv b/test-data/01-sample-latlon-s2cpp-cellid.csv similarity index 100% rename from test-data/lat-lon-s2cpp-cellid.csv rename to test-data/01-sample-latlon-s2cpp-cellid.csv