Skip to content

Commit c7fe46e

Browse files
committed
Replaced calls to removed PHPUnit method "::assertInternalType()" with "::assertIsBool()".
1 parent e0828a9 commit c7fe46e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/RequestSigning/RequestSignerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function testSign()
8686
}
8787

8888
foreach ($expectedHeaderParts as $expectedHeaderPart) {
89-
self::assertInternalType('bool', $expectedHeaderPart);
89+
self::assertIsBool($expectedHeaderPart);
9090
self::assertTrue($expectedHeaderPart);
9191
}
9292

@@ -159,7 +159,7 @@ public function testSignToRequestAuthorization()
159159
}
160160

161161
foreach ($expectedHeaderParts as $expectedHeaderPart) {
162-
self::assertInternalType('bool', $expectedHeaderPart);
162+
self::assertIsBool($expectedHeaderPart);
163163
self::assertTrue($expectedHeaderPart);
164164
}
165165

0 commit comments

Comments
 (0)