diff options
Diffstat (limited to 'spec/unit/parser/resource/reference.rb')
-rwxr-xr-x | spec/unit/parser/resource/reference.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/parser/resource/reference.rb b/spec/unit/parser/resource/reference.rb index 6284e67cc..e082136c5 100755 --- a/spec/unit/parser/resource/reference.rb +++ b/spec/unit/parser/resource/reference.rb @@ -84,7 +84,7 @@ describe Puppet::Parser::Resource::Reference, " when modeling defined types" do scope = @compiler.topscope.class.new(:parent => @compiler.topscope, :namespace => "other", :parser => @parser) ref = @type.new(:type => "class", :title => "top", :scope => scope) - ref.definedtype.classname.should equal(top.classname) + ref.definedtype.name.should equal(top.name) end it "should only look for fully qualified definitions" do @@ -94,6 +94,6 @@ describe Puppet::Parser::Resource::Reference, " when modeling defined types" do scope = @compiler.topscope.class.new(:parent => @compiler.topscope, :namespace => "other", :parser => @parser) ref = @type.new(:type => "top", :title => "foo", :scope => scope) - ref.definedtype.classname.should equal(top.classname) + ref.definedtype.name.should equal(top.name) end end |