From: Don Armstrong Date: Mon, 3 Oct 2011 03:17:43 +0000 (-0700) Subject: * use 1foo instead of foo to avoid "version must start with number" error X-Git-Tag: release/2.6.0~415^2~21 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6335716f86664a033980d7ee077b00dcd54bfd04;p=debbugs.git * use 1foo instead of foo to avoid "version must start with number" error --- diff --git a/t/02_version_dpkg.t b/t/02_version_dpkg.t index a5865a0e..f435befe 100644 --- a/t/02_version_dpkg.t +++ b/t/02_version_dpkg.t @@ -40,13 +40,13 @@ my @versions = ({a => '1.0-1', result => -1, relation => 'lt', }, - {a => 'foo-', - b => 'foo', + {a => '1foo-', + b => '1foo', result => 0, relation => 'eq', }, - {a => 'foo-', - b => 'foo+', + {a => '1foo-', + b => '1foo+', result => -1, relation => 'lt', },