Skip to content

Commit

Permalink
Fix Selenium tests outright broken in galaxyproject#4669.
Browse files Browse the repository at this point in the history
Way to go @jmchilton.
  • Loading branch information
jmchilton committed Sep 21, 2017
1 parent 41b13f6 commit 4ee1801
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/selenium_tests/test_saved_histories.py
Expand Up @@ -170,7 +170,7 @@ def test_standard_search(self):
search_input.send_keys(self.history4_name)
self.send_enter(search_input)

self.assert_grid_histories_are(['No Items'])
self.assert_grid_histories_are([])

@selenium_test
def test_advanced_search(self):
Expand All @@ -187,7 +187,7 @@ def test_advanced_search(self):
self.unset_filter('name', self.history2_name)

self.set_filter(name_filter_selector, self.history4_name)
self.assert_grid_histories_are(['No Items'])
self.assert_grid_histories_are([])
self.unset_filter('name', self.history4_name)

# Search by tags
Expand All @@ -196,7 +196,7 @@ def test_advanced_search(self):
self.unset_filter('tags', self.history3_tags[0])

self.set_filter(tags_filter_selector, self.history4_tags[0])
self.assert_grid_histories_are(['No Items'])
self.assert_grid_histories_are([])
self.unset_filter('tags', self.history4_tags[0])

@selenium_test
Expand Down

0 comments on commit 4ee1801

Please sign in to comment.