Skip to content

Commit

Permalink
Adjust tests for commit 3ec96cb
Browse files Browse the repository at this point in the history
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
  • Loading branch information
madhuracj committed Oct 19, 2014
1 parent aaa2116 commit 8785ea0
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions test/classes/plugin/export/PMA_ExportHtmlword_test.php
Expand Up @@ -555,8 +555,6 @@ public function testGetTableDef()
$result = $this->object->getTableDef(
'database',
'',
"\n",
"example.com",
true,
true,
true
Expand Down Expand Up @@ -654,8 +652,6 @@ public function testGetTableDef()
$result = $this->object->getTableDef(
'database',
'',
"\n",
"example.com",
true,
true,
true
Expand Down Expand Up @@ -724,8 +720,6 @@ public function testGetTableDef()
$result = $this->object->getTableDef(
'database',
'',
"\n",
"example.com",
false,
false,
false
Expand Down Expand Up @@ -804,7 +798,7 @@ public function testExportStructure()

$this->object->expects($this->at(0))
->method('getTableDef')
->with('db', 'tbl', "\n", "example.com", false, false, false, false)
->with('db', 'tbl', false, false, false, false)
->will($this->returnValue('dumpText1'));

$this->object->expects($this->once())
Expand All @@ -814,10 +808,7 @@ public function testExportStructure()

$this->object->expects($this->at(2))
->method('getTableDef')
->with(
'db', 'tbl', "\n", "example.com",
false, false, false, false, true, true
)
->with('db', 'tbl', false, false, false, true, array())
->will($this->returnValue('dumpText3'));

$this->object->expects($this->once())
Expand Down

0 comments on commit 8785ea0

Please sign in to comment.