Skip to content

Commit

Permalink
Update seamless-census test fixtures
Browse files Browse the repository at this point in the history
with 2020 Census geometries
  • Loading branch information
ansoncfit committed Dec 30, 2023
1 parent 5d53072 commit 48c537e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/conveyal/data/census/IntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void testAll () throws Exception {
assertTrue(features.containsKey(110010014023009L));

// read the workplace area characteristics csv
InputStream csv = new GZIPInputStream(new FileInputStream(new File(new File(dir, "jobs"), "dc_wac_S000_JT00_2013.csv.gz")));
InputStream csv = new GZIPInputStream(new FileInputStream(new File(new File(dir, "jobs"), "DC_2021_wac.csv.gz")));
reader = new CsvReader(new InputStreamReader(csv));
reader.readHeaders();

Expand Down Expand Up @@ -153,7 +153,7 @@ public void testAll () throws Exception {
assertTrue(foundJobsEntry);

// read the rac csv
csv = new GZIPInputStream(new FileInputStream(new File(new File(dir, "workforce"), "dc_rac_S000_JT00_2013.csv.gz")));
csv = new GZIPInputStream(new FileInputStream(new File(new File(dir, "workforce"), "DC_2021_rac.csv.gz")));
reader = new CsvReader(new InputStreamReader(csv));

reader.readHeaders();
Expand Down
Binary file not shown.

0 comments on commit 48c537e

Please sign in to comment.