Closes #13661: Check added for type of logger name.
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index 0760a6a..b2d0a2b 100644
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -272,6 +272,8 @@
             ('INF.BADPARENT', 'INFO', '4'),
         ])
 
+    def test_invalid_name(self):
+        self.assertRaises(ValueError, logging.getLogger, any)
 
 class BasicFilterTest(BaseTest):