mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12317] Fix notification tests for DBMSes returning integers as int.
PHPBB3-12317
This commit is contained in:
parent
043b6a207a
commit
c489244895
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ class phpbb_notification_submit_post_type_bookmark_test extends phpbb_notificati
|
||||||
$this->greaterThan(0))
|
$this->greaterThan(0))
|
||||||
->will($this->returnValueMap(array(
|
->will($this->returnValueMap(array(
|
||||||
array(
|
array(
|
||||||
array('3', '4', '5', '6', '7'),
|
array(3, 4, 5, 6, 7),
|
||||||
'f_read',
|
'f_read',
|
||||||
1,
|
1,
|
||||||
array(
|
array(
|
||||||
|
|
|
@ -27,7 +27,7 @@ class phpbb_notification_submit_post_type_post_test extends phpbb_notification_s
|
||||||
$this->greaterThan(0))
|
$this->greaterThan(0))
|
||||||
->will($this->returnValueMap(array(
|
->will($this->returnValueMap(array(
|
||||||
array(
|
array(
|
||||||
array('3', '4', '5', '6', '7', '8'),
|
array(3, 4, 5, 6, 7, 8),
|
||||||
'f_read',
|
'f_read',
|
||||||
1,
|
1,
|
||||||
array(
|
array(
|
||||||
|
|
|
@ -27,7 +27,7 @@ class phpbb_notification_submit_post_type_quote_test extends phpbb_notification_
|
||||||
$this->greaterThan(0))
|
$this->greaterThan(0))
|
||||||
->will($this->returnValueMap(array(
|
->will($this->returnValueMap(array(
|
||||||
array(
|
array(
|
||||||
array('3', '4', '5', '6', '7'),
|
array(3, 4, 5, 6, 7),
|
||||||
'f_read',
|
'f_read',
|
||||||
1,
|
1,
|
||||||
array(
|
array(
|
||||||
|
|
Loading…
Add table
Reference in a new issue