diff --git a/biweeklybudget/tests/acceptance/flaskapp/views/test_scheduled.py b/biweeklybudget/tests/acceptance/flaskapp/views/test_scheduled.py index 57879975..95c102d0 100644 --- a/biweeklybudget/tests/acceptance/flaskapp/views/test_scheduled.py +++ b/biweeklybudget/tests/acceptance/flaskapp/views/test_scheduled.py @@ -515,7 +515,7 @@ def test_1_modal_on_click(self, base_url, selenium): self.wait_for_jquery_done(selenium) # test that updated budget was removed from the page table = selenium.find_element_by_id('table-scheduled-txn') - texts = [x[4] for x in self.tbody2textlist(table)] + texts = [y[4] for y in self.tbody2textlist(table)] assert 'NewST7' in texts def test_3_verify_db(self, testdb): @@ -575,7 +575,7 @@ def test_1_modal_on_click(self, base_url, selenium): self.wait_for_jquery_done(selenium) # test that updated budget was removed from the page table = selenium.find_element_by_id('table-scheduled-txn') - texts = [x[4] for x in self.tbody2textlist(table)] + texts = [y[4] for y in self.tbody2textlist(table)] assert 'NewST7Monthly' in texts def test_3_verify_db(self, testdb): @@ -634,7 +634,7 @@ def test_1_modal_on_click(self, base_url, selenium): self.wait_for_jquery_done(selenium) # test that updated budget was removed from the page table = selenium.find_element_by_id('table-scheduled-txn') - texts = [x[4] for x in self.tbody2textlist(table)] + texts = [y[4] for y in self.tbody2textlist(table)] assert 'NewST7PerPeriod' in texts def test_3_verify_db(self, testdb):