diff --git a/tests/AllRoutesTest.php b/tests/AllRoutesTest.php
index ebc193e..d5237e6 100644
--- a/tests/AllRoutesTest.php
+++ b/tests/AllRoutesTest.php
@@ -492,44 +492,6 @@ public function testBaseControllerActionLoginStatus() {
);
$this->assertNonErrorLayoutIsPresentInResponseBody($response_body);
-
- ///////////////////////////////////////////////////////////////////////
- // Now login, the successful login will redirect to
- // /base-controller/action-login-status
- ///////////////////////////////////////////////////////////////////////
- $response2 = $client->request('POST', "http://{$web_server_host}:{$web_server_port}/base-controller/action-login", [
- 'form_params' => [
- 'username' => 'admin',
- 'password' => 'admin',
- ]
- ]);
-
- // Should contain the /base-controller/action-login-status page
- $response_body2 = ((string)$response2->getBody());
-
- // Test that the auth info is present in the response
- self::assertStringContainsString('You are still logged in.', $response_body2);
- self::assertStringContainsString('Login Status: ', $response_body2);
- self::assertStringContainsString("Logged in Person's Username: admin
", $response_body2);
- self::assertStringContainsString("Logged in User's Data: ", $response_body2);
-
- // Test that the logged-in section of the
- // /base-controller/action-login-status is present in this response
- self::assertStringContainsString(
- 'Check Login Status',
- $response_body2
- );
- self::assertStringContainsString(
- '