chore: removing unnecessary double spaces, a.k.a. "shotgun holes" (#22852)

This commit is contained in:
Evan Rusackas
2023-01-26 11:48:41 -07:00
committed by GitHub
parent 446d1779e1
commit 6998f65e1d
14 changed files with 20 additions and 20 deletions

View File

@@ -178,7 +178,7 @@ class TestPostgresDbEngineSpec(TestDbEngineSpec):
cursor = mock.Mock()
cursor.fetchone.return_value = (
"Seq Scan on birth_names (cost=0.00..1537.91 rows=75691 width=46)",
"Seq Scan on birth_names (cost=0.00..1537.91 rows=75691 width=46)",
)
sql = "SELECT * FROM birth_names"
results = PostgresEngineSpec.estimate_statement_cost(sql, cursor)