# HG changeset patch # User Brian Neal # Date 1320609316 21600 # Node ID 5992b6b1bcd29b3d12ad3406cf3f4fc3d551de69 # Parent 37d9b6b1a097fa081bf6e40c57e6f355e527201b Fix out of date comments and test names in bands and reviews. diff -r 37d9b6b1a097 -r 5992b6b1bcd2 bns_website/bands/tests/view_tests.py --- a/bns_website/bands/tests/view_tests.py Sat Nov 05 23:53:10 2011 -0500 +++ b/bns_website/bands/tests/view_tests.py Sun Nov 06 13:55:16 2011 -0600 @@ -8,9 +8,9 @@ class ViewTest(TestCase): - def test_home(self): + def test_bands(self): """ - Tests the home page to ensure it displays without errors. + Tests the bands page to ensure it displays without errors. """ response = self.client.get(reverse('bands')) diff -r 37d9b6b1a097 -r 5992b6b1bcd2 bns_website/reviews/tests.py --- a/bns_website/reviews/tests.py Sat Nov 05 23:53:10 2011 -0500 +++ b/bns_website/reviews/tests.py Sun Nov 06 13:55:16 2011 -0600 @@ -8,9 +8,9 @@ class ViewTest(TestCase): - def test_home(self): + def test_reviews_list(self): """ - Tests the home page to ensure it displays without errors. + Tests the reviews page to ensure it displays without errors. """ response = self.client.get(reverse('reviews'))