From 685ead0b53c4b44fc8217e2063c29bb9fe152afa Mon Sep 17 00:00:00 2001 From: Michael Maltsev <4129781+m417z@users.noreply.github.com> Date: Sat, 12 Oct 2024 14:09:19 +0300 Subject: [PATCH] Remove temporary Win11 24H2 special case --- data/upd01_get_list_of_updates.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/data/upd01_get_list_of_updates.py b/data/upd01_get_list_of_updates.py index 7871c6fbd16a..8b7e6a33d6af 100644 --- a/data/upd01_get_list_of_updates.py +++ b/data/upd01_get_list_of_updates.py @@ -299,10 +299,7 @@ def main(): consolidate_overlapping_updates(updates_from_release_health) windows_version_updates_sanity_check(updates_from_release_health) - assert updates_from_microsoft_support.keys() == updates_from_release_health.keys() | { - # Temporarily (?) missing in Release Health. - '11-24H2', - } + assert updates_from_microsoft_support.keys() == updates_from_release_health.keys() result = updates_from_microsoft_support merge_updates(result, updates_from_release_health)