@@ -114,11 +114,11 @@ def test_get_last_group_hsc(self):
114114 s3 = boto3 .resource ("s3" )
115115 bucket = s3 .Bucket (self .bucket_name )
116116
117- last_group = get_last_group (bucket , "HSC" , "20231102 " )
117+ last_group = get_last_group (bucket , "HSC" , "20241102 " )
118118 self .assertEqual (last_group , "11020002" )
119119
120120 # Test the case of no match
121- last_group = get_last_group (bucket , "HSC" , "20240101 " )
121+ last_group = get_last_group (bucket , "HSC" , "20250101 " )
122122 self .assertEqual (last_group , "13010000" )
123123
124124 def test_exposure_id_hsc (self ):
@@ -151,10 +151,10 @@ def test_group_id_hsc_limits(self):
151151 s3 = boto3 .resource ("s3" )
152152 bucket = s3 .Bucket (self .bucket_name )
153153
154- group = get_last_group (bucket , "HSC" , "20240930 " )
154+ group = get_last_group (bucket , "HSC" , "20250930 " )
155155 self .assertEqual (group , "21300000" )
156156 with self .assertRaises (RuntimeError ):
157- get_last_group (bucket , "HSC" , "20241001 " )
157+ get_last_group (bucket , "HSC" , "20251001 " )
158158
159159
160160class TesterGoupIdTest (unittest .TestCase ):
0 commit comments