Make WordPress Core

Changeset 37705


Ignore:
Timestamp:
06/14/2016 10:12:35 PM (8 years ago)
Author:
SergeyBiryukov
Message:

After [37702], correct the expected result in test_size_format().

See #37037.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/functions.php

    r37357 r37705  
    6161        $this->assertEquals('1 GB', size_format($gb, 0));
    6262        $this->assertEquals('1 MB', size_format($mb, 0));
    63         $this->assertEquals('1 kB', size_format($kb, 0));
     63        $this->assertEquals('1 KB', size_format($kb, 0));
    6464        $this->assertEquals('1 B',  size_format($b, 0));
    6565        // now some values around
Note: See TracChangeset for help on using the changeset viewer.