aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/notification/convert_test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/notification/convert_test.php b/tests/notification/convert_test.php
index fdd0d19e72..e07c144e16 100644
--- a/tests/notification/convert_test.php
+++ b/tests/notification/convert_test.php
@@ -72,7 +72,7 @@ class phpbb_notification_convert_test extends phpbb_database_test_case
{
$return = array();
- if ($method != '')
+ if ($method !== '')
{
$return[] = array(
'item_type' => $type,
@@ -83,7 +83,7 @@ class phpbb_notification_convert_test extends phpbb_database_test_case
);
}
- if ($method == 'email' || $method == 'both')
+ if ($method === 'email' || $method === 'both')
{
$return[] = array(
'item_type' => $type,
@@ -94,7 +94,7 @@ class phpbb_notification_convert_test extends phpbb_database_test_case
);
}
- if ($method == 'jabber' || $method == 'both')
+ if ($method === 'jabber' || $method === 'both')
{
$return[] = array(
'item_type' => $type,