1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-21 16:22:22 +02:00

[ticket/12812] Improve migrator config_text tool tests

PHPBB3-12812
This commit is contained in:
Matt Friedman 2014-07-05 08:26:01 -07:00
parent 606d82f7dd
commit 9dfce860e7

View File

@ -71,9 +71,7 @@ class phpbb_dbal_migrator_tool_config_text_test extends phpbb_database_test_case
public function test_reverse_remove()
{
$this->config_text->delete('foo');
$this->tool->reverse('remove', 'foo');
$this->assertEquals('', $this->config_text->get('foo'));
$this->assertSame('', $this->config_text->get('foo'));
}
}