"Dag H. Wanvik" <[email protected]> writes: > In a recent regression suite run I saw 11 instances of this error (in > client suite part of the test). Running the test standalone, it > worked. The missing table is detected in the setUp method, the table > is created in the decorateSQL method given to the > CleanDatabaseTestSetup constructor. Any ideas hwo this could happen?
One possibility is that you could have had an external network server running. Since CleanDatabaseTestSetup is the outermost decorator, it will use the embedded driver when it invokes decorateSQL(), and the tables won't be made available on the external server. -- Knut Anders
