﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
34193	TestCase _fixture_teardown breaks database MIRROR usage	Jean-Daniel	nobody	"The TestCase class _fixture_teardown() implementation try to iterate over all databases while it should ignore MIRROR databases.

Trying to include MIRROR database in the iteration loop make the teardown be execute twice on the database and raise an exception.

{{{
  for db_name in reversed(self._databases_names()):
}}}


Should be 

{{{
  for db_name in reversed(self._databases_names(include_mirrors=False)):
}}}
"	Bug	closed	Testing framework	4.1	Normal	duplicate			Unreviewed	0	0	0	0	0	0
