test/util/log_test.rb in bixby-common-0.3.8 vs test/util/log_test.rb in bixby-common-0.3.9
- old
+ new
@@ -14,10 +14,10 @@
ENV.delete("BIXBY_DEBUG")
Bixby::Log.setup_logger
assert_equal 2, Logging::Logger.root.level # warn
ENV.delete("BIXBY_DEBUG")
- Bixby::Log.setup_logger(:info)
+ Bixby::Log.setup_logger(:level => :info)
assert_equal 1, Logging::Logger.root.level # info
end
end # TestLog