From 60e225deaec7778814e461e150f496dda70ad0b2 Mon Sep 17 00:00:00 2001
From: Peter Kessen
Date: Wed, 30 Sep 2015 20:02:32 +0200
Subject: [PATCH] corrected test for logging see #1627
---
test/test_logging.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/test_logging.py b/test/test_logging.py
index 894d1aecb..bc52edf59 100644
--- a/test/test_logging.py
+++ b/test/test_logging.py
@@ -31,7 +31,7 @@ class LoggingTest(TestCase):
l5 = l3.getChild("shalala")
self.assertEqual(l5.__class__, blog.BeetsLogger)
- l6 = log.getLogger()
+ l6 = blog.getLogger()
self.assertNotEqual(l1, l6)
def test_str_format_logging(self):