diff options
author | tphoney <tp@puppet.com> | 2017-02-28 18:07:56 +0000 |
---|---|---|
committer | tphoney <tp@puppet.com> | 2017-02-28 18:07:56 +0000 |
commit | afc313bb81013473dd12a578fe652ebdd07b179a (patch) | |
tree | deb0d7830fa73b5633c0f50981701c9618a18ba0 | |
parent | 2e3b87f4ffafe5eb4d0a37d11e4f63fbbed0dd63 (diff) |
loosen the regex for tuple checking
-rwxr-xr-x | spec/acceptance/type_spec.rb | 2 |
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 |