Skip to content

Commit a739e1d

Browse files
committed
fix: resolve remaining test suite issues
- Add strict types declaration to test files - Update namespace reference in Pest.php configuration - Update author email address in composer.json
1 parent 8a8d2a5 commit a739e1d

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"authors": [
1717
{
1818
"name": "Gerwin",
19-
"email": "gerwin@example.com",
19+
"email": "iamgerwin@live.com",
2020
"role": "Developer"
2121
}
2222
],

tests/ArchTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iamgerwin\GsmModem\Tests;
46

57
arch('it will not use debugging functions')

tests/ExampleTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iamgerwin\GsmModem\Tests;
46

57
it('can test', function () {

tests/Pest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

3-
use VendorName\Skeleton\Tests\TestCase;
3+
use Iamgerwin\GsmModem\Tests\TestCase;
44

55
uses(TestCase::class)->in(__DIR__);

0 commit comments

Comments
 (0)