Skip to content

Commit

Permalink
Fix lint issues in test file
Browse files Browse the repository at this point in the history
  • Loading branch information
bharadwajvr committed Aug 26, 2024
1 parent fa6b5d5 commit 0983949
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions samples/samples/graph_snippets_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

from google.api_core import exceptions

from google.cloud import spanner
from google.cloud.spanner_admin_database_v1.types.common import DatabaseDialect
from test_utils.retry import RetryErrors

Expand Down Expand Up @@ -208,7 +207,7 @@ def test_delete_data_with_graph_query_in_dml(capsys, instance_id, sample_databas


@pytest.mark.dependency(depends=["insert_data"])
def test_delete_data_with_graph_query_in_dml(capsys, instance_id, sample_database):
def test_delete_data(capsys, instance_id, sample_database):
graph_snippets.delete_data(instance_id, sample_database.database_id)
out, _ = capsys.readouterr()
assert "Deleted data." in out

0 comments on commit 0983949

Please sign in to comment.