From a1343c94d0ddd29e9e66943b50a5c6fcd8731157 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 10 Apr 2025 13:04:01 +0100 Subject: [PATCH] bundle/commands/exec: add missing require. This should fix the flaky test failures in `exec_spec.rb`. --- Library/Homebrew/bundle/commands/exec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/bundle/commands/exec.rb b/Library/Homebrew/bundle/commands/exec.rb index c411d1e316..9f73eadc01 100644 --- a/Library/Homebrew/bundle/commands/exec.rb +++ b/Library/Homebrew/bundle/commands/exec.rb @@ -1,6 +1,7 @@ # typed: false # rubocop:todo Sorbet/TrueSigil # frozen_string_literal: true +require "English" require "exceptions" require "extend/ENV" require "utils"