Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 43f3918

Browse files
committed
fix: linting
1 parent 9d08391 commit 43f3918

1 file changed

Lines changed: 1 addition & 13 deletions

File tree

samples/samples/pg_snippets_test.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import uuid
1717

1818
from google.api_core import exceptions
19-
from google.cloud import spanner
2019
import pytest
2120
from test_utils.retry import RetryErrors
2221

@@ -205,6 +204,7 @@ def test_add_index(capsys, instance_id, sample_database):
205204
out, _ = capsys.readouterr()
206205
assert "Added the AlbumsByAlbumTitle index" in out
207206

207+
208208
@pytest.mark.dependency(depends=["add_index"])
209209
def test_read_data_with_index(capsys, instance_id, sample_database):
210210
snippets.read_data_with_index(instance_id, sample_database.database_id)
@@ -397,25 +397,13 @@ def test_query_data_with_string(capsys, instance_id, sample_database):
397397
assert "VenueId: 42, VenueName: Venue 42" in out
398398

399399

400-
@pytest.mark.dependency(
401-
name="add_numeric_column",
402-
depends=["create_table_with_datatypes"],
403-
)
404-
405-
406400
@pytest.mark.dependency(depends=["add_numeric_column"])
407401
def test_query_data_with_numeric_parameter(capsys, instance_id, sample_database):
408402
snippets.query_data_with_numeric_parameter(instance_id, sample_database.database_id)
409403
out, _ = capsys.readouterr()
410404
assert "VenueId: 4, Revenue: 35000" in out
411405

412406

413-
@pytest.mark.dependency(
414-
name="add_json_column",
415-
depends=["create_table_with_datatypes"],
416-
)
417-
418-
419407
@pytest.mark.dependency(depends=["insert_datatypes_data"])
420408
def test_query_data_with_timestamp_parameter(capsys, instance_id, sample_database):
421409
snippets.query_data_with_timestamp_parameter(

0 commit comments

Comments
 (0)