We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e6e693 commit f5b609bCopy full SHA for f5b609b
tests/database/flows_test.py
@@ -6,6 +6,7 @@
6
7
def test_database_flow_exists(flow: Flow, expdb_test: Connection) -> None:
8
retrieved_flow = database.flows.get_by_name(flow.name, flow.external_version, expdb_test)
9
+ assert retrieved_flow is not None
10
assert retrieved_flow.id == flow.id
11
# when using actual ORM, can instead ensure _all_ fields match.
12
0 commit comments