aboutsummaryrefslogtreecommitdiff
path: root/spec/unit/puppet_x
diff options
context:
space:
mode:
authorGabriel Nagy <gabriel.nagy@puppet.com>2021-09-30 19:31:15 +0300
committerGitHub <noreply@github.com>2021-09-30 19:31:15 +0300
commit8f8c5a5b8f2addd157d353740202539218f2be9c (patch)
tree5ff1f5bbd08e7d556439df0f18756f10aeb34bf3 /spec/unit/puppet_x
parent0d92e9f24280df1082ec8dfa2baf8778b853e0ca (diff)
parent855f3bba8bb1c29ea1ec2dae471c90bec7786f01 (diff)
downloadpuppet-augeas_core-8f8c5a5b8f2addd157d353740202539218f2be9c.tar.gz
puppet-augeas_core-8f8c5a5b8f2addd157d353740202539218f2be9c.tar.bz2
Merge pull request #41 from BobosilaVictor/MODULES-11197
(MODULES-11197) Update puppetlabs-augeas_core to latest pdk template
Diffstat (limited to 'spec/unit/puppet_x')
-rw-r--r--spec/unit/puppet_x/augeas/util/parser_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/unit/puppet_x/augeas/util/parser_spec.rb b/spec/unit/puppet_x/augeas/util/parser_spec.rb
index f8b5b2b..9769d76 100644
--- a/spec/unit/puppet_x/augeas/util/parser_spec.rb
+++ b/spec/unit/puppet_x/augeas/util/parser_spec.rb
@@ -92,7 +92,8 @@ describe PuppetX::Augeas::Util::Parser do
end
it 'allows multi-character unicode hexadecimal character escapes with \\u{...}' do
- expect(parse_to_array('["\u{7}", "\u{20}", "\u{100}", "\u{2026}", "\u{1F464}", "\u{100000}", "\u{53 74 72 69 6E 67}"]')).to eq(["\a", ' ', "\u{100}", "\u{2026}", "\u{1F464}", "\u{100000}", 'String'])
+ expect(parse_to_array('["\u{7}", "\u{20}", "\u{100}", "\u{2026}", "\u{1F464}", "\u{100000}", "\u{53 74 72 69 6E 67}"]')).to eq(["\a", ' ', "\u{100}", "\u{2026}", "\u{1F464}", "\u{100000}",
+ 'String'])
end
end