Skip to content

Commit

Permalink
issue #21 - fix tox on py27
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Apr 2, 2017
1 parent 6b4fd75 commit 0d6a20c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit 0d6a20c

Please sign in to comment.