From 7b2780e6422e2c9a03b205c461c0cc5f28c67e1e Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Fri, 8 May 2026 18:26:00 -0400 Subject: [PATCH] =?UTF-8?q?test=5Fapplet=5Fnew=5Fpost:=20bump=20current-ur?= =?UTF-8?q?l=20regex=20/dashboard/post/=20=E2=86=92=20/billboard/post/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stray /dashboard/post/ regex in NewVisitorTest.test_multiple_users_can_start_posts_at_different_urls — the path moved in the C1 brief-sprint relocation (d192b15) but two occurrences in this FT slipped past the bulk update. CI run #286 caught it. Code architected by Disco DeDisco Git commit message Co-Authored-By: Claude Sonnet 4.6 --- src/functional_tests/test_applet_new_post.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functional_tests/test_applet_new_post.py b/src/functional_tests/test_applet_new_post.py index 4c6802d..bfd8f0f 100644 --- a/src/functional_tests/test_applet_new_post.py +++ b/src/functional_tests/test_applet_new_post.py @@ -38,7 +38,7 @@ class NewVisitorTest(FunctionalTest): edith_post_url = self.browser.current_url self.assertRegex( edith_post_url, - r'/dashboard/post/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/$', + r'/billboard/post/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/$', ) self.browser.delete_all_cookies() @@ -54,7 +54,7 @@ class NewVisitorTest(FunctionalTest): francis_post_url = self.browser.current_url self.assertRegex( francis_post_url, - r'/dashboard/post/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/$', + r'/billboard/post/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/$', ) self.assertNotEqual(francis_post_url, edith_post_url)