Skip to content

Commit c38a007

Browse files
committed
make format
1 parent 23c4ab9 commit c38a007

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/integration/models/database/test_database.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import os
2-
import re
32
import time
43
from test.integration.helpers import (
54
get_test_label,
@@ -152,7 +151,7 @@ def test_get_engines(test_linode_client):
152151

153152
for e in engines:
154153
assert e.engine in ["mysql", "postgresql"]
155-
#assert re.search("[0-9]+.[0-9]+", e.version)
154+
# assert re.search("[0-9]+.[0-9]+", e.version)
156155
assert e.id == e.engine + "/" + e.version
157156

158157

@@ -214,9 +213,10 @@ def test_update_sql_db(test_linode_client, test_create_sql_db):
214213

215214
assert res
216215
assert database.allow_list == new_allow_list
217-
#assert database.label == label
216+
# assert database.label == label
218217
assert database.updates.day_of_week == 2
219218

219+
220220
@pytest.mark.skipif(
221221
os.getenv("RUN_DB_TESTS").strip().lower() not in {"yes", "true"},
222222
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",
@@ -343,6 +343,7 @@ def test_update_postgres_db(test_linode_client, test_create_postgres_db):
343343
assert database.label == label
344344
assert database.updates.day_of_week == 2
345345

346+
346347
@pytest.mark.skipif(
347348
os.getenv("RUN_DB_TESTS").strip().lower() not in {"yes", "true"},
348349
reason="RUN_DB_TESTS environment variable must be set to 'yes' or 'true' (case insensitive)",

0 commit comments

Comments
 (0)