diff --git a/practice01/functional_tests.py b/practice01/functional_tests.py
index 527deea3dbe7717f468e72706f7e8695b441f426..7d3e966f639fd11daa2eb6ce472ce42a6d0ba873 100644
--- a/practice01/functional_tests.py
+++ b/practice01/functional_tests.py
@@ -5,7 +5,7 @@ class NewVisitorTest(unittest.TestCase): #
 	
 	def setUp(self): #
 		self.browser = webdriver.Firefox()
-		self.browser.implicitly_wait(10)
+		self.browser.implicitly_wait(3)
 	
 	def tearDown(self): #
 		self.browser.quit()
@@ -15,8 +15,8 @@ class NewVisitorTest(unittest.TestCase): #
 		# to check out its homepage
 		self.browser.get('http://localhost:8000')
 		# She notices the page title and header mention to-do lists
-		self.assertIn('Django', self.browser.title) #
-		# self.fail('Finish the test!') #
+		# self.assertIn('Django', self.browser.title) #
+		self.fail('Finish the test!') #
 		# She is invited to enter a to-do item straight away
 		# [...rest of comments as before]