Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Dec 1, 2014
1 parent 2502375 commit b7e1781
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/libraries/PMA_insert_edit_test.php
Expand Up @@ -226,7 +226,7 @@ public function testShowEmptyResultMessageOrSetUniqueCondition()
array(false), 0, array('1'), 'SELECT', array('1' => 'result1')
);

$attrInstance->setValue($restoreInstance);
$response->setValue($restoreInstance);

$this->assertFalse($result);
}
Expand Down Expand Up @@ -1936,7 +1936,7 @@ public function testIsInsertRow()

PMA_isInsertRow();

$attrInstance->setValue($restoreInstance);
$response->setValue($restoreInstance);

$this->assertEquals(5, $GLOBALS['cfg']['InsertRows']);
}
Expand Down Expand Up @@ -2799,7 +2799,7 @@ public function testDetermineInsertOrEdit()

$result = PMA_determineInsertOrEdit(null, 'db', 'table');

$attrInstance->setValue($restoreInstance);
$response->setValue($restoreInstance);

$this->assertEquals(
array(
Expand Down

0 comments on commit b7e1781

Please sign in to comment.