diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-09-24 15:38:39 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-09-24 15:38:39 +0200 |
commit | 55cbb7897e09ba8d94f730e265ddc7ac5fff1c18 (patch) | |
tree | a86573e31e01f659b8a024bae7e183770aa19f87 /application/test | |
parent | 10288d9d5f5faf4d87cdce8924d89734eee1169f (diff) |
Remove unused mb_str_pad function
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/test')
-rw-r--r-- | application/test/tests/test_filebin_helper.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/application/test/tests/test_filebin_helper.php b/application/test/tests/test_filebin_helper.php index 2f2895ddb..a46d4bc3c 100644 --- a/application/test/tests/test_filebin_helper.php +++ b/application/test/tests/test_filebin_helper.php @@ -80,12 +80,6 @@ class test_filebin_helper extends \test\Test { $this->t->is(format_bytes(1500*1024*1024*1024*1024*1024), "1500.00PiB", "1500.00PiB"); } - public function test_mb_str_pad() - { - $this->t->is(mb_str_pad('test', 6), 'test ', 'Simple test with length=6'); - $this->t->is(mb_str_pad('絫ö', 6), '絫ö ', 'UTF8 test with length=6'); - } - public function test_files_are_equal() { $a1 = FCPATH.'/data/tests/message1.bin'; |