From cac9c3e9e0f73046121fefe3a4a94ee9f40ccfe8 Mon Sep 17 00:00:00 2001 From: fatkodima Date: Thu, 4 Apr 2024 15:47:53 +0300 Subject: [PATCH] Add missing `ostruct` require to `http_token_authentication_test.rb` --- actionpack/test/controller/http_token_authentication_test.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/actionpack/test/controller/http_token_authentication_test.rb b/actionpack/test/controller/http_token_authentication_test.rb index 8174f92f7849f..fb6cf1f1bc3b6 100644 --- a/actionpack/test/controller/http_token_authentication_test.rb +++ b/actionpack/test/controller/http_token_authentication_test.rb @@ -1,5 +1,6 @@ # frozen_string_literal: true +require "ostruct" require "abstract_unit" class HttpTokenAuthenticationTest < ActionController::TestCase