Skip to content

Commit bccefeb

Browse files
committed
update test case
1 parent f3dd579 commit bccefeb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/unit/UtilsTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ public static function SSHKeyProvider()
7777
#[DataProvider("SSHKeyProvider")]
7878
public function testTestValidSSHKey(bool $expected, string $key)
7979
{
80-
$this->assertEquals($expected, testValidSSHKey($key));
80+
[$is_valid, $explanation] = testValidSSHKey($key);
81+
$this->assertEquals($expected, $is_valid);
8182
}
8283

8384
public static function URLComponentProvider()

0 commit comments

Comments
 (0)