Skip to content

Commit

Permalink
Update test expectations (#3837)
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm committed May 14, 2023
1 parent 6322d7c commit 6482c59
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ class SomeTest extends TestCase
{
public function test()
{
$this->assertContains('f', 'foo');
$this->assertContains('f', 'foo');
$this->assertStringContainsString('f', 'foo');
$this->assertStringContainsString('f', 'foo');

$this->assertContains('oauth_body_hash', $headers['Authorization'][0]);
$this->assertStringContainsString('oauth_body_hash', $headers['Authorization'][0]);
}
}

Expand Down

0 comments on commit 6482c59

Please sign in to comment.