Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / validate_re_spec.rb
index 270e2b1..2a50689 100644 (file)
@@ -40,14 +40,14 @@ describe 'validate_re' do
 
     describe 'non-string inputs' do
       [
-        1,             # Fixnum
-        3.14,          # Float
-        nil,           # NilClass
-        true,          # TrueClass
-        false,         # FalseClass
-        ['10'],        # Array
-        :key,          # Symbol
-        { :key => 'val' }, # Hash
+        1,                  # Fixnum
+        3.14,               # Float
+        nil,                # NilClass
+        true,               # TrueClass
+        false,              # FalseClass
+        ['10'],             # Array
+        :key,               # Symbol
+        { :key => 'val' },  # Hash
       ].each do |input|
         it { is_expected.to run.with_params(input, '.*').and_raise_error(Puppet::ParseError, %r{needs to be a String}) }
       end