We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8441867 commit c1ed4caCopy full SHA for c1ed4ca
1 file changed
vertica_python/tests/integration_tests/test_authentication.py
@@ -124,17 +124,6 @@ def test_oauth_access_token(self):
124
res = cur.fetchone()
125
self.assertEqual(res[0], 'OAuth')
126
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
-
138
def test_totp_connection(self):
139
"""
140
Steps:
0 commit comments