We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c4620 commit 9c4186cCopy full SHA for 9c4186c
src/bitmessagekivy/tests/test_network_screen.py
@@ -33,7 +33,7 @@ def test_network_status(self):
33
# Getting the value of total connections
34
total_connection_text = self.cli.getattr('//NetworkStat//MDRaisedButton[@text]', 'text')
35
# Splitting the string from total connection numbers
36
- number_of_connections = int(total_connection_text.split(' ')[-1])
+ number_of_connections = int(total_connection_text.split('::')[-1])
37
# Checking Total connections
38
self.assertGreaterEqual(number_of_connections, 1)
39
# Checking the state of Process tab
0 commit comments