1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-18 22:41:28 +02:00

[ticket/12479] Remove duplicate semi-colons

PHPBB-12479
This commit is contained in:
Marc Alexander
2024-07-17 18:06:22 +02:00
parent 78f96c3e5c
commit 8b3bc0b5f5
5 changed files with 6 additions and 6 deletions

View File

@@ -136,7 +136,7 @@ class phpbb_config_db_test extends phpbb_database_test_case
public function test_increment_new()
{
$this->config->increment('foobar', 3);
$this->assertEquals(3, $this->config['foobar']);;
$this->assertEquals(3, $this->config['foobar']);
}
public function test_delete()