Skip to content

Commit eeed9a1

Browse files
remove un-necessary chagnes in example scripts
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 5eaded4 commit eeed9a1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

examples/experimental/tests/test_sea_async_query.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515
def test_sea_async_query_with_cloud_fetch():
1616
"""
17-
Test executing a simple query asynchronously using the SEA backend with cloud fetch enabled.
17+
Test executing a query asynchronously using the SEA backend with cloud fetch enabled.
1818
1919
This function connects to a Databricks SQL endpoint using the SEA backend,
20-
executes a query asynchronously with cloud fetch enabled, and verifies that execution completes successfully.
20+
executes a simple query asynchronously with cloud fetch enabled, and verifies that execution completes successfully.
2121
"""
2222
server_hostname = os.environ.get("DATABRICKS_SERVER_HOSTNAME")
2323
http_path = os.environ.get("DATABRICKS_HTTP_PATH")
@@ -120,10 +120,10 @@ def test_sea_async_query_with_cloud_fetch():
120120

121121
def test_sea_async_query_without_cloud_fetch():
122122
"""
123-
Test executing a simple query asynchronously using the SEA backend with cloud fetch disabled.
123+
Test executing a query asynchronously using the SEA backend with cloud fetch disabled.
124124
125125
This function connects to a Databricks SQL endpoint using the SEA backend,
126-
executes a query asynchronously with cloud fetch disabled, and verifies that execution completes successfully.
126+
executes a simple query asynchronously with cloud fetch disabled, and verifies that execution completes successfully.
127127
"""
128128
server_hostname = os.environ.get("DATABRICKS_SERVER_HOSTNAME")
129129
http_path = os.environ.get("DATABRICKS_HTTP_PATH")

examples/experimental/tests/test_sea_sync_query.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212

1313
def test_sea_sync_query_with_cloud_fetch():
1414
"""
15-
Test executing a simple query synchronously using the SEA backend with cloud fetch enabled.
15+
Test executing a query synchronously using the SEA backend with cloud fetch enabled.
1616
1717
This function connects to a Databricks SQL endpoint using the SEA backend,
18-
executes a query with cloud fetch enabled, and verifies that execution completes successfully.
18+
executes a simple query with cloud fetch enabled, and verifies that execution completes successfully.
1919
"""
2020
server_hostname = os.environ.get("DATABRICKS_SERVER_HOSTNAME")
2121
http_path = os.environ.get("DATABRICKS_HTTP_PATH")
@@ -90,7 +90,7 @@ def test_sea_sync_query_with_cloud_fetch():
9090

9191
def test_sea_sync_query_without_cloud_fetch():
9292
"""
93-
Test executing a simple query synchronously using the SEA backend with cloud fetch disabled.
93+
Test executing a query synchronously using the SEA backend with cloud fetch disabled.
9494
9595
This function connects to a Databricks SQL endpoint using the SEA backend,
9696
executes a simple query with cloud fetch disabled, and verifies that execution completes successfully.

0 commit comments

Comments
 (0)