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 9fea3ab commit 0619773Copy full SHA for 0619773
test/functional/LoginShellSetTest.php
@@ -38,21 +38,7 @@ private function isShellValid(string $shell)
38
}
39
40
#[DataProvider("getShells")]
41
- public function testSetLoginShellCustom(string $shell): void
42
- {
43
- global $USER;
44
- if (!$this->isShellValid($shell)) {
45
- $this->expectException(Exception::class);
46
- }
47
- post(
48
- __DIR__ . "/../../webroot/panel/account.php",
49
- ["form_type" => "loginshell", "shellSelect" => "Custom", "shell" => $shell]
50
- );
51
- $this->assertEquals($shell, $USER->getLoginShell());
52
53
-
54
- #[DataProvider("getShells")]
55
- public function testSetLoginShellSelect(string $shell): void
+ public function testSetLoginShell(string $shell): void
56
{
57
global $USER;
58
if (!$this->isShellValid($shell)) {
0 commit comments