summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/shuffle.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/shuffle.rb')
-rw-r--r--lib/puppet/parser/functions/shuffle.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/puppet/parser/functions/shuffle.rb b/lib/puppet/parser/functions/shuffle.rb
index 18134ab..30c663d 100644
--- a/lib/puppet/parser/functions/shuffle.rb
+++ b/lib/puppet/parser/functions/shuffle.rb
@@ -12,9 +12,8 @@ Randomizes the order of a string or array elements.
"given (#{arguments.size} for 1)") if arguments.size < 1
value = arguments[0]
- klass = value.class
- unless [Array, String].include?(klass)
+ unless value.is_a?(Array) || value.is_a?(String)
raise(Puppet::ParseError, 'shuffle(): Requires either ' +
'array or string to work with')
end