From d2cdbcbb18aaf667077eb46c2abc2cfd8690f919 Mon Sep 17 00:00:00 2001 From: Martin Afanasjew <martin@afanasjew.de> Date: Thu, 2 Jun 2016 09:17:05 +0200 Subject: [PATCH] tests: add missing require Amends e4d0187120e61bc80d31ebecc3b38f0740b20bb5. The `require` was accidentally omitted causing the tests to fail very sporadically (or always, when invoked as `brew tests --only=integration_cmds`). --- Library/Homebrew/test/test_integration_cmds.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/test/test_integration_cmds.rb b/Library/Homebrew/test/test_integration_cmds.rb index a249146cf9..89b8be6d39 100644 --- a/Library/Homebrew/test/test_integration_cmds.rb +++ b/Library/Homebrew/test/test_integration_cmds.rb @@ -2,6 +2,7 @@ require "bundler" require "testing_env" require "fileutils" require "pathname" +require "formula" class IntegrationCommandTests < Homebrew::TestCase def setup -- GitLab