From: Aaron Schulz Date: Sat, 7 Jul 2018 08:52:43 +0000 (+0100) Subject: Fix ParserTestRunner DB table test prefix logic X-Git-Tag: 1.34.0-rc.0~4852 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=6badc7415684df54d6672098834359223b859507;p=lhc%2Fweb%2Fwiklou.git Fix ParserTestRunner DB table test prefix logic Follow-up to 6cfdbdf60 Bug: T198943 Change-Id: I3c3553f2ec6b5ca0d401712e4018c7eec4d9204d --- diff --git a/tests/parser/ParserTestRunner.php b/tests/parser/ParserTestRunner.php index 4ae5f78f9b..ceee432fb8 100644 --- a/tests/parser/ParserTestRunner.php +++ b/tests/parser/ParserTestRunner.php @@ -1264,6 +1264,7 @@ class ParserTestRunner { $this->dbClone = new CloneDatabase( $this->db, $this->listTables(), $prefix ); $this->dbClone->useTemporaryTables( $temporary ); $this->dbClone->cloneTableStructure(); + CloneDatabase::changePrefix( $prefix ); if ( $dbType == 'oracle' ) { $this->db->query( 'BEGIN FILL_WIKI_INFO; END;' );