summaryrefslogtreecommitdiffstats
path: root/test/other/report.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/other/report.rb')
-rwxr-xr-xtest/other/report.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/other/report.rb b/test/other/report.rb
index c862884d6..bfae0dab0 100755
--- a/test/other/report.rb
+++ b/test/other/report.rb
@@ -21,7 +21,7 @@ class TestReports < Test::Unit::TestCase
# Make every third file
File.open(file, "w") { |f| f.puts "" } if i % 3 == 0
- objects << Puppet::Type.type(:file).create(
+ objects << Puppet::Type.type(:file).new(
:path => file,
:ensure => "file"
)
@@ -44,7 +44,7 @@ class TestReports < Test::Unit::TestCase
}
# Now make a file for testing logging
- file = Puppet::Type.type(:file).create(:path => tempfile(), :ensure => "file")
+ file = Puppet::Type.type(:file).new(:path => tempfile(), :ensure => "file")
file.finish
log = nil