Skip to content

Commit c316e65

Browse files
authored
Update FontTest to use PHPUnit\Framework namespace.
1 parent ad4ad20 commit c316e65

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/FontLib/FontTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
namespace FontLib\Tests;
44

55
use FontLib\Font;
6+
use PHPUnit\Framework\TestCase;
67

7-
class FontTest extends \PHPUnit_Framework_TestCase
8+
class FontTest extends TestCase
89
{
910
/**
1011
* @expectedException \Fontlib\Exception\FontNotFoundException
@@ -45,4 +46,4 @@ public function test12CmapFormat()
4546
$this->assertEquals(53, count($cmapFormat12Table['glyphIndexArray']));
4647
}
4748

48-
}
49+
}

0 commit comments

Comments
 (0)