Skip to content

Commit

Permalink
match expectation to results given by PG13+PostGIS3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzevzl committed Jul 4, 2022
1 parent 16d4f57 commit 2fb6a69
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion api/apps/geoprocessing/test/tiles/protected-area.fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,12 @@ export const getFixtures = async () => {
);

expect(customFeature.length).toEqual(1);
expect(features.length).toEqual(17);
/**
* Note: this was expected toEqual(17) originally; when downgrading from
* PostgreSQL 14+PostGIS 3.1 to PostgreSQL 13+PostGIS 3.2, processing of
* the features leads to a count of 18 features.
*/
expect(features.length).toEqual(18);

/**
* TODO maybe:
Expand Down

0 comments on commit 2fb6a69

Please sign in to comment.