Skip to content

Commit feda251

Browse files
committed
Fix typo
1 parent 29796d8 commit feda251

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

airgun/entities/ldap_authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def test_connection(self, values):
5757
"""Testing FQDN for test connection"""
5858
view = self.navigate_to(self, 'New')
5959
view.fill(values)
60-
view.ldap_server.text_connection.click()
60+
view.ldap_server.test_connection.click()
6161
view.flash.assert_no_error()
6262

6363
def read_auth_source_counts(self, auth_source_type):

airgun/views/ldapauthentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ldap_server(SatTab):
5151

5252
name = TextInput(id='auth_source_ldap_name')
5353
host = TextInput(id='auth_source_ldap_host')
54-
text_connection = Text('//a[@id="test_connection_button"]')
54+
test_connection = Text('//a[@id="test_connection_button"]')
5555
ldaps = Checkbox(id='auth_source_ldap_tls')
5656
cacert = TextInput(id='auth_source_ldap_cacert')
5757
port = TextInput(id='auth_source_ldap_port')

0 commit comments

Comments
 (0)