Avoid bad method call to patchPatch() in DbTestRecorder

Bug: T193995
Change-Id: Ibc480b04463792b7cd720a6eb080e0960a30e440
This commit is contained in:
Aaron Schulz 2018-06-25 21:14:08 +01:00
parent 8e7843197e
commit ec3289524e

View file

@ -41,7 +41,8 @@ class DbTestRecorder extends TestRecorder {
|| !$this->db->tableExists( 'testitem' )
) {
print "WARNING> `testrun` table not found in database. Trying to create table.\n";
$this->db->sourceFile( $this->db->patchPath( 'patch-testrun.sql' ) );
$updater = DatabaseUpdater::newForDB( $this->db );
$this->db->sourceFile( $updater->patchPath( $this->db, 'patch-testrun.sql' ) );
echo "OK, resuming.\n";
}