Skip to content

Commit c1ed4ca

Browse files
committed
removed the unnecessary test case
1 parent 8441867 commit c1ed4ca

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

vertica_python/tests/integration_tests/test_authentication.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -124,17 +124,6 @@ def test_oauth_access_token(self):
124124
res = cur.fetchone()
125125
self.assertEqual(res[0], 'OAuth')
126126

127-
def test_totp_invalid_alphanumeric_code(self):
128-
# Verify alphanumeric TOTP inputs return explicit client-side validation error
129-
try:
130-
# Provide alphanumeric TOTP via connection options; should fail locally
131-
self._conn_info['totp'] = "ot123"
132-
err_msg = "Invalid TOTP: Please enter a valid 6-digit numeric code."
133-
self.assertConnectionFail(err_msg=err_msg)
134-
finally:
135-
# Clean up connection options
136-
self._conn_info.pop('totp', None)
137-
138127
def test_totp_connection(self):
139128
"""
140129
Steps:

0 commit comments

Comments
 (0)