From 9c34bde456f05cb5fc1a3097ff4334f98297dd56 Mon Sep 17 00:00:00 2001 From: Peter Kessen Date: Sun, 27 Sep 2015 20:16:39 +0200 Subject: [PATCH] added test for logging --- test/test_logging.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_logging.py b/test/test_logging.py index 1900eb6d0..894d1aecb 100644 --- a/test/test_logging.py +++ b/test/test_logging.py @@ -31,6 +31,9 @@ class LoggingTest(TestCase): l5 = l3.getChild("shalala") self.assertEqual(l5.__class__, blog.BeetsLogger) + l6 = log.getLogger() + self.assertNotEqual(l1, l6) + def test_str_format_logging(self): l = blog.getLogger("baz123") stream = StringIO()