fixed a bug in spec/server_helper

This commit is contained in:
2011-01-27 11:53:45 +00:00
parent 412eafacd2
commit d5b081bc62

View File

@@ -5,13 +5,13 @@ module ServerHelper
class << self
def log
@log ||= []
@@log ||= []
end
attr_writer :log
end
def log(*args)
SpecServer.log << args
@@log << args
# silence Output
end