Skip to content

Commit

Permalink
Merge branch 'tickets/DM-45722'
Browse files Browse the repository at this point in the history
  • Loading branch information
kfindeisen committed Aug 28, 2024
2 parents b13e38d + a98f9a2 commit 1162e18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cmdLineFwk.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,12 +701,12 @@ def testEmptyQGraph(self):
populateButler(self.pipeline, butler)

fwk = CmdLineFwk()
with self.assertLogs(level=logging.CRITICAL) as cm:
with self.assertLogs(level=logging.ERROR) as cm:
qgraph = fwk.makeGraph(self.pipeline, args)
self.assertRegex(
cm.output[0], ".*Initial data ID query returned no rows, so QuantumGraph will be empty.*"
)
self.assertRegex(cm.output[1], ".*No datasets.*bad_input.*")
self.assertRegex(cm.output[0], ".*No datasets.*bad_input.*")
self.assertIsNone(qgraph)

def testSimpleQGraphNoSkipExisting_inputs(self):
Expand Down

0 comments on commit 1162e18

Please sign in to comment.