summaryrefslogtreecommitdiff
path: root/lib/custodian/testfactory.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 13:20:38 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 13:20:38 +0000
commit16b766cff0984494c7b81c1efc08e6386ae819f8 (patch)
tree4d847286a6c1951783f6d02aeb1801f2f8745e5b /lib/custodian/testfactory.rb
parente716a49dabe2c086a97e2d8b3cffe5cf369ad026 (diff)
Use def with parentheses when there are parameters.
Diffstat (limited to 'lib/custodian/testfactory.rb')
-rw-r--r--lib/custodian/testfactory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/testfactory.rb b/lib/custodian/testfactory.rb
index b28d30a..3375021 100644
--- a/lib/custodian/testfactory.rb
+++ b/lib/custodian/testfactory.rb
@@ -88,7 +88,7 @@ module Custodian
#
# Register a new test type - this must be called by our derived classes
#
- def self.register_test_type name
+ def self.register_test_type(name)
@@subclasses[name] ||= []
@@subclasses[name].push(self)
end