Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
asg017 committed Aug 14, 2024
1 parent 751abbc commit 86c5203
Showing 1 changed file with 25 additions and 27 deletions.
52 changes: 25 additions & 27 deletions tests/test_internals_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,36 +673,34 @@ async def test_hidden_tables(app_client):
assert await db.hidden_table_names() == []
await db.execute("create virtual table f using fts5(a)")
assert await db.hidden_table_names() == [
'f_config',
'f_content',
'f_data',
'f_docsize',
'f_idx',
]
"f_config",
"f_content",
"f_data",
"f_docsize",
"f_idx",
]

await db.execute("create virtual table r using rtree(id, amin, amax)")
assert await db.hidden_table_names() == [
'f_config',
'f_content',
'f_data',
'f_docsize',
'f_idx',
'r_node',
'r_parent',
'r_rowid'
]
"f_config",
"f_content",
"f_data",
"f_docsize",
"f_idx",
"r_node",
"r_parent",
"r_rowid",
]

await db.execute("create table _hideme(_)")
assert await db.hidden_table_names() == [
'_hideme',
'f_config',
'f_content',
'f_data',
'f_docsize',
'f_idx',
'r_node',
'r_parent',
'r_rowid'
]


"_hideme",
"f_config",
"f_content",
"f_data",
"f_docsize",
"f_idx",
"r_node",
"r_parent",
"r_rowid",
]

0 comments on commit 86c5203

Please sign in to comment.