diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-09 21:30:44 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-09 21:30:44 +0000 |
| commit | 3e7d44e6288bcb67f29e57a9ff886532ce64878b (patch) | |
| tree | 14069e1c47a1a94594a1909c83705204d511e73e /test | |
| parent | 13c7f2f155b23bfb31ce4388a4109385f0c40293 (diff) | |
Fixing #606 -- now only components mention @children.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2499 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test')
| -rwxr-xr-x | test/ral/manager/type.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ral/manager/type.rb b/test/ral/manager/type.rb index 3872ef637..355b81c4d 100755 --- a/test/ral/manager/type.rb +++ b/test/ral/manager/type.rb @@ -285,7 +285,7 @@ class TestType < Test::Unit::TestCase def test_object_recursion comp = Puppet.type(:component).create(:name => "top") - file = Puppet.type(:file).create(:path => tempfile, :ensure => :file) + file = Puppet.type(:component).create(:name => "middle") assert_raise(Puppet::DevError) do comp.push(comp) |
