summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdgit-repos-server4
-rwxr-xr-xtests/tests/drs-push-rejects4
2 files changed, 4 insertions, 4 deletions
diff --git a/dgit-repos-server b/dgit-repos-server
index 49fa795..3e74217 100755
--- a/dgit-repos-server
+++ b/dgit-repos-server
@@ -456,8 +456,8 @@ sub checksuite () {
sub tagh1 ($) {
my ($tag) = @_;
my $vals = $tagh{$tag};
- reject "missing tag $tag in signed tag object" unless $vals;
- reject "multiple tags $tag in signed tag object" unless @$vals == 1;
+ reject "missing header $tag in signed tag object" unless $vals;
+ reject "multiple headers $tag in signed tag object" unless @$vals == 1;
return $vals->[0];
}
diff --git a/tests/tests/drs-push-rejects b/tests/tests/drs-push-rejects
index c770409..73de5ec 100755
--- a/tests/tests/drs-push-rejects
+++ b/tests/tests/drs-push-rejects
@@ -94,8 +94,8 @@ mustfail 'pushing multiple tags' $push_spec HEAD:refs/tags/debian/wombat
# fixme:
# reject "unknown suite";
-# reject "missing tag $tag in signed tag object" unless $vals;
-# reject "multiple tags $tag in signed tag object" unless @$vals == 1;
+# reject "missing header $tag in signed tag object" unless $vals;
+# reject "multiple headers $tag in signed tag object" unless @$vals == 1;
# or reject "command string not understood";
# reject "unknown method" unless $mainfunc;