From 8818b769c524665fd1f72fd30dc63aac40e17cdf Mon Sep 17 00:00:00 2001 From: David Shanske Date: Sat, 11 Nov 2023 17:46:09 +0000 Subject: [PATCH] Fix reference to old class --- tests/test-authorize.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-authorize.php b/tests/test-authorize.php index 2235ff4..24fcf48 100644 --- a/tests/test-authorize.php +++ b/tests/test-authorize.php @@ -59,7 +59,7 @@ public function test_authorize_bearer() { $token = self::set_token(); $_REQUEST['micropub'] = 'endpoint'; $_SERVER['HTTP_AUTHORIZATION'] = 'Bearer ' . $token; - $authorize = new Indieauth_Local_Authorize(); + $authorize = new Indieauth_Authorize(); $authorize->load(); $user_id = apply_filters( 'determine_current_user', false ); $this->assertEquals( $user_id, self::$author_id );