Skip to content

Commit 0715363

Browse files
committed
Replace deprecated isType() with a more specific assertion
1 parent b55b8f2 commit 0715363

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/src/Jws/JwsFetcherTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public function testWillUseJwsExpirationTimeWhenConsideringTtlForCaching(): void
172172
->willReturn(60);
173173

174174
$this->artifactFetcherMock->expects($this->once())->method('cacheIt')
175-
->with($this->isType('string'), 60, 'uri');
175+
->with($this->isString(), 60, 'uri');
176176

177177

178178
$this->sut()->fromNetwork('uri');

0 commit comments

Comments
 (0)