summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authortphoney <tp@puppet.com>2017-02-28 18:07:56 +0000
committertphoney <tp@puppet.com>2017-02-28 18:07:56 +0000
commitafc313bb81013473dd12a578fe652ebdd07b179a (patch)
treedeb0d7830fa73b5633c0f50981701c9618a18ba0 /spec
parent2e3b87f4ffafe5eb4d0a37d11e4f63fbbed0dd63 (diff)
loosen the regex for tuple checking
Diffstat (limited to 'spec')
-rwxr-xr-xspec/acceptance/type_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/acceptance/type_spec.rb b/spec/acceptance/type_spec.rb
index 7cf445b..5cc9470 100755
--- a/spec/acceptance/type_spec.rb
+++ b/spec/acceptance/type_spec.rb
@@ -12,7 +12,7 @@ describe 'type function' do
EOS
apply_manifest(pp, :catch_failures => true) do |r|
- expect(r.stdout).to match(/type is Tuple\[String, String, String, String\]/)
+ expect(r.stdout).to match(/type is Tuple\[String.*, String.*, String.*, String.*\]/)
end
end
it 'types strings' do