From adc62684f0e5e3de44e492d03a0c042741b40ce1 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 23 May 2014 16:17:20 +0200 Subject: [PATCH] [ticket/12570] Add a test for set_array() and updating with the same value PHPBB3-12570 --- tests/config/db_text_test.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/config/db_text_test.php b/tests/config/db_text_test.php index ed5b6e7327..59730edf09 100644 --- a/tests/config/db_text_test.php +++ b/tests/config/db_text_test.php @@ -95,6 +95,8 @@ class phpbb_config_db_text_test extends phpbb_database_test_case 'baby' => 'phpBB', // Entry update 'bar' => '64', + // Entry update - same value + 'foo' => '23', ); $this->config_text->set_array($set_array_param);