summaryrefslogtreecommitdiff
path: root/Biz
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-11-27 18:10:33 -0500
committerBen Sima <ben@bensima.com>2025-11-27 18:10:33 -0500
commitb7083eaba5288d02dd4832e10de312cfd755ccae (patch)
tree6096db3df2c2810ad310d35bdd4c3661f63f0f20 /Biz
parent0356aac5ad591172967f688e71d1e4351c99c7fe (diff)
Fixes to get all tests passing
Diffstat (limited to 'Biz')
-rw-r--r--Biz/PodcastItLater/TestMetricsView.py4
-rw-r--r--Biz/PodcastItLater/UI.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/Biz/PodcastItLater/TestMetricsView.py b/Biz/PodcastItLater/TestMetricsView.py
index b452feb..c6fdd46 100644
--- a/Biz/PodcastItLater/TestMetricsView.py
+++ b/Biz/PodcastItLater/TestMetricsView.py
@@ -109,7 +109,7 @@ class TestMetricsView(BaseWebTest):
self.assertEqual(response.headers["Location"], "/")
-def test() -> None:
+def main() -> None:
"""Run the tests."""
Test.run(
Web.area,
@@ -118,4 +118,4 @@ def test() -> None:
if __name__ == "__main__":
- test()
+ main()
diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py
index ff9301d..e9ef27d 100644
--- a/Biz/PodcastItLater/UI.py
+++ b/Biz/PodcastItLater/UI.py
@@ -4,7 +4,7 @@ PodcastItLater Shared UI Components.
Common UI components and utilities shared across web pages.
"""
-# : out podcastitlater-ui
+# : lib
# : dep ludic
import Biz.PodcastItLater.Core as Core
import ludic.html as html