Skip to content

Commit

Permalink
Remove protocol version check for workload tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DMickens authored May 2, 2023
1 parent e621fb6 commit bd855fe
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions vertica_python/tests/integration_tests/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,12 @@ def test_autocommit_off(self):
self.assertTrue(conn.autocommit)

def test_workload_default(self):
self.require_protocol_at_least(3 << 16 | 15)
with self._connect() as conn:
query = "SHOW WORKLOAD"
res = self._query_and_fetchone(query)
self.assertEqual(res[0], '')

def test_workload_set_property(self):
self.require_protocol_at_least(3 << 16 | 15)
self._conn_info['workload'] = 'python_test_workload'
with self._connect() as conn:
# we use dc_client_server_messages to test that the client is working properly.
Expand Down

0 comments on commit bd855fe

Please sign in to comment.