summaryrefslogtreecommitdiffstats
path: root/test/language/snippets.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/language/snippets.rb')
-rwxr-xr-xtest/language/snippets.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/language/snippets.rb b/test/language/snippets.rb
index c42d67397..fe22e46bf 100755
--- a/test/language/snippets.rb
+++ b/test/language/snippets.rb
@@ -55,7 +55,7 @@ class TestSnippets < Test::Unit::TestCase
parser.file = file
ast = parser.parse
- return ast
+ ast
end
def snippet2ast(text)
@@ -63,7 +63,7 @@ class TestSnippets < Test::Unit::TestCase
parser.string = text
ast = parser.parse
- return ast
+ ast
end
def client
@@ -77,7 +77,7 @@ class TestSnippets < Test::Unit::TestCase
scope = Puppet::Parser::Scope.new()
ast.evaluate(scope)
- return scope
+ scope
end
def scope2objs(scope)