diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-13 15:56:28 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-13 15:56:28 -0500 |
commit | b8bb16f8e7b1ec41b596e8b6526739c705dcd09f (patch) | |
tree | 635df030b09c88e8c716321790e523551a9572e1 /tests/test_framework | |
parent | 3918b228f7556ceb33e34483797db08fd8125749 (diff) | |
parent | 424080c45a75e3354d6bd98d381442c223e5bf27 (diff) | |
download | forums-b8bb16f8e7b1ec41b596e8b6526739c705dcd09f.tar forums-b8bb16f8e7b1ec41b596e8b6526739c705dcd09f.tar.gz forums-b8bb16f8e7b1ec41b596e8b6526739c705dcd09f.tar.bz2 forums-b8bb16f8e7b1ec41b596e8b6526739c705dcd09f.tar.xz forums-b8bb16f8e7b1ec41b596e8b6526739c705dcd09f.zip |
Merge remote-tracking branch 'remotes/upstream/develop-olympus' into develop
* remotes/upstream/develop-olympus:
[ticket/11831] getAttribute was replaced with attr
[ticket/11831] Update fabpot/goutte to 1.0.*
Conflicts:
phpBB/composer.lock
Diffstat (limited to 'tests/test_framework')
-rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index eb40cddfe5..5028f9206a 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -925,7 +925,7 @@ class phpbb_functional_test_case extends phpbb_test_case $hidden_fields = array( $crawler->filter('[type="hidden"]')->each(function ($node, $i) { - return array('name' => $node->getAttribute('name'), 'value' => $node->getAttribute('value')); + return array('name' => $node->attr('name'), 'value' => $node->attr('value')); }), ); |