Skip to content

Commit 3e46c13

Browse files
committed
Fix Ruby 1.9.3 build
1 parent efeb174 commit 3e46c13

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

spec/unit/puppet/util/ini_file_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,16 +249,16 @@
249249
let(:sample_content) do
250250
template = <<-EOS
251251
[Drive names]
252-
A:=5¼" Floppy
253-
B:=3½" Floppy
252+
A:=5.25" Floppy
253+
B:=3.5" Floppy
254254
C:=Winchester
255255
EOS
256256
template.split("\n")
257257
end
258258

259259
it "should expose settings for sections" do
260-
subject.get_value("Drive names", "A:").should eq '5¼" Floppy'
261-
subject.get_value("Drive names", "B:").should eq '3½" Floppy'
260+
subject.get_value("Drive names", "A:").should eq '5.25" Floppy'
261+
subject.get_value("Drive names", "B:").should eq '3.5" Floppy'
262262
subject.get_value("Drive names", "C:").should eq 'Winchester'
263263
end
264264
end

0 commit comments

Comments
 (0)