This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=eb626af364392b64af7f473269dd1fe11b246a92 commit eb626af364392b64af7f473269dd1fe11b246a92 Author: Guillem Jover <[email protected]> AuthorDate: Wed Dec 22 00:11:21 2021 +0100 test: Print field type name instead of id in test case description --- scripts/t/Dpkg_Control_Fields.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/t/Dpkg_Control_Fields.t b/scripts/t/Dpkg_Control_Fields.t index 8076ef0ba..df6091499 100644 --- a/scripts/t/Dpkg_Control_Fields.t +++ b/scripts/t/Dpkg_Control_Fields.t @@ -245,10 +245,10 @@ foreach my $type (sort keys %fields) { foreach my $field (sort keys %known_fields) { if ($allowed_fields{$field}) { ok(field_is_allowed_in($field, $type), - "Field $field allowed for type $type"); + "Field $field allowed for type $fields{$type}->{name}"); } else { ok(!field_is_allowed_in($field, $type), - "Field $field not allowed for type $type"); + "Field $field not allowed for type $fields{$type}->{name}"); } } } -- Dpkg.Org's dpkg

