diff options
Diffstat (limited to 'Library/Homebrew/test/formula_test.rb')
| -rw-r--r-- | Library/Homebrew/test/formula_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/formula_test.rb b/Library/Homebrew/test/formula_test.rb index f7b06b079..318175d49 100644 --- a/Library/Homebrew/test/formula_test.rb +++ b/Library/Homebrew/test/formula_test.rb @@ -209,12 +209,12 @@ class FormulaTests < Homebrew::TestCase refute_predicate f, :installed? f.stubs(:installed_prefix).returns( - stub(directory?: true, children: []) + stub(directory?: true, children: []), ) refute_predicate f, :installed? f.stubs(:installed_prefix).returns( - stub(directory?: true, children: [stub]) + stub(directory?: true, children: [stub]), ) assert_predicate f, :installed? end |
