aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Homebrew/test/uses_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/uses_test.rb b/Library/Homebrew/test/uses_test.rb
index 2b1555417..1fad0da28 100644
--- a/Library/Homebrew/test/uses_test.rb
+++ b/Library/Homebrew/test/uses_test.rb
@@ -11,6 +11,6 @@ class IntegrationCommandTestUses < IntegrationCommandTestCase
assert_equal "", cmd("uses", "baz")
assert_equal "baz", cmd("uses", "bar")
- assert_equal "bar\nbaz", cmd("uses", "--recursive", "foo")
+ assert_match(/(bar\nbaz|baz\nbar)/, cmd("uses", "--recursive", "foo"))
end
end