We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cb83a7 commit 2029d25Copy full SHA for 2029d25
1 file changed
tests/modules/saml/src/Controller/ServiceProviderTest.php
@@ -81,25 +81,6 @@ public function requireAdmin(): void
81
}
82
83
84
- /**
85
- * Test that accessing the login-endpoint without AuthID leads to an exception
86
- *
87
- * @return void
88
- */
89
- public function testLoginMissingAuthId(): void
90
- {
91
- $request = Request::create(
92
- '/sp/login',
93
- 'GET',
94
- );
95
-
96
- $c = new Controller\ServiceProvider($this->config, $this->session);
97
98
- $this->expectException(ArgumentCountError::class);
99
- $c->login($request);
100
- }
101
102
103
/**
104
* Test that accessing the login-endpoint with a non-SP authsource leads to an exception
105
*
0 commit comments