diff options
Diffstat (limited to 'spec/unit/node')
| -rwxr-xr-x | spec/unit/node/configuration.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/node/configuration.rb b/spec/unit/node/configuration.rb index ee3834ef3..62d8e343d 100755 --- a/spec/unit/node/configuration.rb +++ b/spec/unit/node/configuration.rb @@ -250,11 +250,11 @@ describe Puppet::Node::Configuration, " when converting to a RAL configuration" @original.tag(*%w{one two three}) @original.add_class *%w{four five six} - @top = Puppet::TransObject.new 'Class[top]', "component" + @top = Puppet::TransObject.new 'top', "class" @topobject = Puppet::TransObject.new '/topobject', "file" - @middle = Puppet::TransObject.new 'Class[middle]', "component" + @middle = Puppet::TransObject.new 'middle', "class" @middleobject = Puppet::TransObject.new '/middleobject', "file" - @bottom = Puppet::TransObject.new 'Class[bottom]', "component" + @bottom = Puppet::TransObject.new 'bottom', "class" @bottomobject = Puppet::TransObject.new '/bottomobject', "file" @resources = [@top, @topobject, @middle, @middleobject, @bottom, @bottomobject] |
