Skip to content

Commit

Permalink
Fixed wrong index in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
roccivic committed Oct 31, 2012
1 parent e88976c commit 91083d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/classes/PMA_Scripts_test.php
Expand Up @@ -170,8 +170,8 @@ public function testGetFiles()
$this->object->addFile('common.js');
$this->assertEquals(
array(
array('name' => 'codemirror/lib/codemirror.js', 'has_onload' => 0),
array('name' => 'common.js', 'has_onload' => 1)
array('name' => 'codemirror/lib/codemirror.js', 'fire' => 0),
array('name' => 'common.js', 'fire' => 1)
),
$this->object->getFiles()
);
Expand Down

0 comments on commit 91083d1

Please sign in to comment.