diff options
author | Paula McMaw <paula@puppet.com> | 2017-03-01 11:59:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-01 11:59:40 +0000 |
commit | 2fa8b2b6387aa59d8cc10e521e069e02477a186b (patch) | |
tree | deb0d7830fa73b5633c0f50981701c9618a18ba0 | |
parent | 2e3b87f4ffafe5eb4d0a37d11e4f63fbbed0dd63 (diff) | |
parent | afc313bb81013473dd12a578fe652ebdd07b179a (diff) |
Merge pull request #728 from tphoney/loosen_regex_test
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 |