aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-12-05 10:44:36 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2012-12-05 10:44:36 -0500
commitfe87d441eeb54bf5efb56a0f69f42848d9ef53d5 (patch)
tree60eba9d82fa6108f55d00786a8acd71e92d568a1 /tests
parent16966f52d37e4ebdca4f3846c81dfa85b193501e (diff)
downloadforums-fe87d441eeb54bf5efb56a0f69f42848d9ef53d5.tar
forums-fe87d441eeb54bf5efb56a0f69f42848d9ef53d5.tar.gz
forums-fe87d441eeb54bf5efb56a0f69f42848d9ef53d5.tar.bz2
forums-fe87d441eeb54bf5efb56a0f69f42848d9ef53d5.tar.xz
forums-fe87d441eeb54bf5efb56a0f69f42848d9ef53d5.zip
[ticket/11162] Review comments fixed.
PHPBB3-11162
Diffstat (limited to 'tests')
-rw-r--r--tests/functions_tricky_update/update_rows_avoiding_duplicates_notify_status_test.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/functions_tricky_update/update_rows_avoiding_duplicates_notify_status_test.php b/tests/functions_tricky_update/update_rows_avoiding_duplicates_notify_status_test.php
index aa739c5f04..9052585552 100644
--- a/tests/functions_tricky_update/update_rows_avoiding_duplicates_notify_status_test.php
+++ b/tests/functions_tricky_update/update_rows_avoiding_duplicates_notify_status_test.php
@@ -90,7 +90,8 @@ class phpbb_update_rows_avoiding_duplicates_notify_status_test extends phpbb_dat
// user id of 1 is the user being updated
$sql = 'SELECT notify_status
FROM ' . TOPICS_WATCH_TABLE . '
- WHERE topic_id = ' . (int) $to . ' AND user_id = 1';
+ WHERE topic_id = ' . (int) $to . '
+ AND user_id = 1';
$result = $db->sql_query($sql);
$notify_status = $db->sql_fetchfield('notify_status');
$db->sql_freeresult($result);