Skip to content

Commit

Permalink
Fix err msg
Browse files Browse the repository at this point in the history
  • Loading branch information
romanbracinik committed Feb 9, 2025
1 parent b06596f commit 208f7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/StorageBackendTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public function testUpdateStorageBackendWithWrongPassword(array $options)
$this->client->updateStorageBackend($backend['id'], $wrongOptions);
$this->fail('Should fail!');
} catch (ClientException $e) {
$this->assertSame('Failed to connect using the supplied credentials', $e->getMessage());
$this->assertContains('Supplied credentials cannot use the supplied warehouse', $e->getMessage());
}
}

Expand Down

0 comments on commit 208f7c0

Please sign in to comment.