We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3dd579 commit bccefebCopy full SHA for bccefeb
test/unit/UtilsTest.php
@@ -77,7 +77,8 @@ public static function SSHKeyProvider()
77
#[DataProvider("SSHKeyProvider")]
78
public function testTestValidSSHKey(bool $expected, string $key)
79
{
80
- $this->assertEquals($expected, testValidSSHKey($key));
+ [$is_valid, $explanation] = testValidSSHKey($key);
81
+ $this->assertEquals($expected, $is_valid);
82
}
83
84
public static function URLComponentProvider()
0 commit comments