Skip to content

Commit 7216c37

Browse files
committed
Fix indirect coverage loss
1 parent 4c3e8b2 commit 7216c37

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/core_tests/test_bot.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ async def test_migrate_db(
3535
Column("b", String, default="bar"),
3636
)
3737

38+
_ = Table(
39+
"foobar2",
40+
database.metadata,
41+
Column("a", String, primary_key=True),
42+
Column("b", String, default="bar"),
43+
)
44+
3845
table.create(old_db.engine)
3946
other_table.create(old_db.engine)
4047
mock_bot = mock_bot_factory(

0 commit comments

Comments
 (0)