aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/migrator_tool_config_text_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dbal/migrator_tool_config_text_test.php')
-rw-r--r--tests/dbal/migrator_tool_config_text_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dbal/migrator_tool_config_text_test.php b/tests/dbal/migrator_tool_config_text_test.php
index 7f9c076fe0..f832105e00 100644
--- a/tests/dbal/migrator_tool_config_text_test.php
+++ b/tests/dbal/migrator_tool_config_text_test.php
@@ -58,7 +58,7 @@ class phpbb_dbal_migrator_tool_config_text_test extends phpbb_database_test_case
$this->config_text->set('foo', 'bar');
$this->tool->remove('foo');
- $this->assertTrue(is_null($this->config_text->get('foo')));
+ $this->assertNull($this->config_text->get('foo'));
}
public function test_reverse_add()
@@ -66,7 +66,7 @@ class phpbb_dbal_migrator_tool_config_text_test extends phpbb_database_test_case
$this->config_text->set('foo', 'bar');
$this->tool->reverse('add', 'foo');
- $this->assertTrue(is_null($this->config_text->get('foo')));
+ $this->assertNull($this->config_text->get('foo'));
}
public function test_reverse_remove()