aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/migrator_tool_config_text_test.php
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2014-07-06 08:13:20 -0700
committerMatt Friedman <maf675@gmail.com>2014-07-06 08:13:20 -0700
commit5527044a00c7bdff1a3a6edfabdbe7583935bbaa (patch)
tree37fc0545900e5e76ca215c261e56ab9beca15e72 /tests/dbal/migrator_tool_config_text_test.php
parent9dfce860e7b13985897aba0b785d4d6257cf5d4c (diff)
downloadforums-5527044a00c7bdff1a3a6edfabdbe7583935bbaa.tar
forums-5527044a00c7bdff1a3a6edfabdbe7583935bbaa.tar.gz
forums-5527044a00c7bdff1a3a6edfabdbe7583935bbaa.tar.bz2
forums-5527044a00c7bdff1a3a6edfabdbe7583935bbaa.tar.xz
forums-5527044a00c7bdff1a3a6edfabdbe7583935bbaa.zip
[ticket/12812] Improve migrator config_text tool tests
PHPBB3-12812
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()