Skip to content

Commit d37cb59

Browse files
committed
removed unnecesary is_string check
1 parent bf66b10 commit d37cb59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Integration/OIDCTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ final class OIDCTest extends TestCase
2626
public function testConnect(): void
2727
{
2828
$this->expectNotToPerformAssertions();
29-
if (!array_key_exists('ACCESS_TOKEN_BEARER', $_ENV) || !is_string($_ENV['ACCESS_TOKEN_BEARER'])) {
29+
if (!array_key_exists('ACCESS_TOKEN_BEARER', $_ENV) || $_ENV['ACCESS_TOKEN_BEARER')) {
3030
$this->markTestSkipped('No OIDC token provided');
3131
}
3232

0 commit comments

Comments
 (0)