summaryrefslogtreecommitdiffstats
path: root/test/language/ast/hostclass.rb
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-12-11 15:35:36 -0600
committerLuke Kanies <luke@madstop.com>2007-12-11 15:35:36 -0600
commitcb0c4eebb0a7b2fadc5e0487e1c692007cb8b2e5 (patch)
treeb4284addea69adf9d19028ff1bab94035b1c1827 /test/language/ast/hostclass.rb
parent7ac3bd79621f6c66cd3b5b7041aeba83c27c3602 (diff)
downloadpuppet-cb0c4eebb0a7b2fadc5e0487e1c692007cb8b2e5.tar.gz
puppet-cb0c4eebb0a7b2fadc5e0487e1c692007cb8b2e5.tar.xz
puppet-cb0c4eebb0a7b2fadc5e0487e1c692007cb8b2e5.zip
Renaming 'configuration' to 'catalog', fixing #954.
Diffstat (limited to 'test/language/ast/hostclass.rb')
-rwxr-xr-xtest/language/ast/hostclass.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/language/ast/hostclass.rb b/test/language/ast/hostclass.rb
index 62d4f9ee3..80032f30c 100755
--- a/test/language/ast/hostclass.rb
+++ b/test/language/ast/hostclass.rb
@@ -175,7 +175,7 @@ class TestASTHostClass < Test::Unit::TestCase
sub = parser.newclass "sub", :parent => "base"
base.expects(:safeevaluate).with do |args|
- assert(scope.compile.configuration.tags.include?("sub"), "Did not tag with sub class name before evaluating base class")
+ assert(scope.compile.catalog.tags.include?("sub"), "Did not tag with sub class name before evaluating base class")
base.evaluate(args)
true
end