From 9b1ac35ab666e24dc58bd65cc1b3f7162d5f6746 Mon Sep 17 00:00:00 2001 From: deal0f49-21 <56767152+deal0f49-21@users.noreply.github.com> Date: Sun, 19 Jul 2026 08:15:49 +0100 Subject: [PATCH] fix: correct wrong source URLs for Cardiff and Blackburn with Darwen Cardiff Council's url was set to the generic gov.uk homepage instead of cardiff.gov.uk, and Blackburn with Darwen's was set to Blaby's domain (a completely unrelated council). Found while building an attribution feature that surfaces each council's own url field to end users, which is used correctly for the actual scraper logic (both entries have skip_get_url: true so this didn't affect date-fetching), but was factually wrong for display/reference purposes. Verified the correct domains directly against each council's real website before fixing. --- uk_bin_collection/tests/input.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uk_bin_collection/tests/input.json b/uk_bin_collection/tests/input.json index 79dd54ad3a..7823a0b4fb 100755 --- a/uk_bin_collection/tests/input.json +++ b/uk_bin_collection/tests/input.json @@ -241,7 +241,7 @@ "LAD24CD": "E06000008", "skip_get_url": true, "uprn": "100010733027", - "url": "https://www.blaby.gov.uk", + "url": "https://www.blackburn.gov.uk", "wiki_name": "Blackburn with Darwen", "wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN." }, @@ -480,7 +480,7 @@ "LAD24CD": "W06000015", "skip_get_url": true, "uprn": "100100112419", - "url": "https://www.gov.uk", + "url": "https://www.cardiff.gov.uk", "wiki_name": "Cardiff", "wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN." },