Skip to content

Commit 30c95af

Browse files
committed
[temp] Upgraded openwisp-utils
1 parent 7a0f844 commit 30c95af

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
docker~=7.1.0
2-
openwisp-utils[qa,selenium] @ https://github.com/openwisp/openwisp-utils/tarball/1.2
2+
openwisp-utils[qa,selenium] @ https://github.com/openwisp/openwisp-utils/tarball/selenium-chromedriver

tests/runtests.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,11 @@ def test_topology_graph(self):
158158
self.find_element(By.CSS_SELECTOR, '.njg-valueLabel').text.lower(),
159159
label,
160160
)
161-
self.assertEqual(len(self.console_error_check()), 0)
161+
try:
162+
self.assertEqual(len(self.console_error_check()), 0)
163+
except AssertionError:
164+
print(self.console_error_check())
165+
self.fail()
162166
self.action_on_resource(label, path, 'delete_selected')
163167
self.assertNotIn('<li>Nodes: ', self.web_driver.page_source)
164168
self.action_on_resource(label, path, 'update_selected')

0 commit comments

Comments
 (0)