found some lingering List references in the template dir; summarily changed to Note

This commit is contained in:
Disco DeDisco
2026-03-11 14:10:56 -04:00
parent f45740d8b3
commit 50ee983e27
4 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ from .note_page import NotePage
class NewVisitorTest(FunctionalTest):
# Test methods
def test_can_start_a_todo_list(self):
def test_can_start_a_note(self):
self.create_pre_authenticated_session("alice@test.io")
self.browser.get(self.live_server_url)
note_page = NotePage(self)
@@ -17,7 +17,7 @@ class NewVisitorTest(FunctionalTest):
self.assertIn('Welcome', header_text)
inputbox = note_page.get_item_input_box()
self.assertEqual(inputbox.get_attribute('placeholder'), 'Enter a to-do item')
self.assertEqual(inputbox.get_attribute('placeholder'), 'Enter a note item')
inputbox.send_keys('Buy peacock feathers')