[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, experimental, updated. debian/2.6.8-1-844-g7ec39d5
Matt Robinson
matt at puppetlabs.com
Tue May 10 08:07:39 UTC 2011
The following commit has been merged in the experimental branch:
commit 054eac6a66113eca3704f26a341aa873162782bb
Author: Matt Robinson <matt at puppetlabs.com>
Date: Tue Mar 22 22:51:34 2011 -0700
(#6820) Fix Invalid multibyte character
puppet/spec/unit/network/authstore_spec.rb:89:
invalid multibyte char (US-ASCII)
puppet/spec/unit/network/authstore_spec.rb:89:
syntax error, unexpected $end, expecting ']'
" 2001:0000:1234:0000:0000:C1C0:ABCD:0876 0",
^
There was a non-breaking space (HEX A0) in that line because according
to Markus (who made the original commit), these test lines were copy
pasted from a web page. The intent wasn't to test non-breaking speace
chacters for IPV6.
Reviewed-by: Jacob Helwig <jacob at puppetlabs.com>
diff --git a/spec/unit/network/authstore_spec.rb b/spec/unit/network/authstore_spec.rb
index 0b4dd21..d477ee3 100644
--- a/spec/unit/network/authstore_spec.rb
+++ b/spec/unit/network/authstore_spec.rb
@@ -86,7 +86,7 @@ describe Puppet::Network::AuthStore::Declaration do
[
"02001:0000:1234:0000:0000:C1C0:ABCD:0876",
"2001:0000:1234:0000:00001:C1C0:ABCD:0876",
- " 2001:0000:1234:0000:0000:C1C0:ABCD:0876 0",
+ " 2001:0000:1234:0000:0000:C1C0:ABCD:0876 0",
"2001:0000:1234: 0000:0000:C1C0:ABCD:0876",
"3ffe:0b00:0000:0001:0000:0000:000a",
"FF02:0000:0000:0000:0000:0000:0000:0000:0001",
--
Puppet packaging for Debian
More information about the Pkg-puppet-devel
mailing list