aboutsummaryrefslogtreecommitdiffstats
path: root/tests/session/create_test.php
diff options
context:
space:
mode:
authorAndy Chase <asperous2@gmail.com>2013-07-08 16:34:46 -0700
committerAndy Chase <asperous2@gmail.com>2013-07-08 16:34:46 -0700
commitcd1fe789d243e12330a049799818ed7b062ea347 (patch)
treec9d3d9ba1ac22e01ad0be4ec46cd864a00d7ef57 /tests/session/create_test.php
parent3999d7ec7cc0860d3f955db9088558f92d1ba497 (diff)
downloadforums-cd1fe789d243e12330a049799818ed7b062ea347.tar
forums-cd1fe789d243e12330a049799818ed7b062ea347.tar.gz
forums-cd1fe789d243e12330a049799818ed7b062ea347.tar.bz2
forums-cd1fe789d243e12330a049799818ed7b062ea347.tar.xz
forums-cd1fe789d243e12330a049799818ed7b062ea347.zip
[ticket/11620] Minor changes to tests for coding standards
PHPBB3-11620
Diffstat (limited to 'tests/session/create_test.php')
-rw-r--r--tests/session/create_test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/session/create_test.php b/tests/session/create_test.php
index 9d77a26f17..4a7484321c 100644
--- a/tests/session/create_test.php
+++ b/tests/session/create_test.php
@@ -33,11 +33,11 @@ class phpbb_session_create_test extends phpbb_database_test_case
return array(array(
'bot_agent' => $bot_agent,
'user_id' => $user_id,
- 'bot_ip' => $bot_ip
+ 'bot_ip' => $bot_ip,
));
}
- function test_bot_session ()
+ function test_bot_session()
{
$output = $this->session_facade->session_create(
false,
@@ -50,6 +50,6 @@ class phpbb_session_create_test extends phpbb_database_test_case
self::bot('user agent', 13, '127.0.0.1'),
''
);
- $this->assertEquals($output->data['is_bot'], true, "should be a bot");
+ $this->assertEquals($output->data['is_bot'], true, 'should be a bot');
}
}