aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorNath Tumlin2017-03-13 19:15:41 -0500
committerNath Tumlin2017-03-13 19:15:41 -0500
commitb42ccece49d88874b8221570f62c08366b9d5eab (patch)
tree4bf568cca25aefa7f321fd90e8c815296822b4d8 /Library
parent2080c360e26868efc08a0603c507a0be44c37b67 (diff)
downloadbrew-b42ccece49d88874b8221570f62c08366b9d5eab.tar.bz2
Style changes
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/cask/cli/search_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/test/cask/cli/search_spec.rb b/Library/Homebrew/test/cask/cli/search_spec.rb
index cc4e0ae63..cbd8ceb9d 100644
--- a/Library/Homebrew/test/cask/cli/search_spec.rb
+++ b/Library/Homebrew/test/cask/cli/search_spec.rb
@@ -58,14 +58,14 @@ describe Hbc::CLI::Search, :cask do
end
it "doesn't highlight not installed packages" do
- expect(Hbc::CLI::Search.highlight_installed "local-caffeine").to eq("local-caffeine")
+ expect(Hbc::CLI::Search.highlight_installed("local-caffeine")).to eq("local-caffeine")
end
it "highlights installed packages" do
shutup do
- Hbc::CLI::Install.run("local-caffeine")
+ Hbc::CLI::Install.run("local-caffeine")
end
- expect(Hbc::CLI::Search.highlight_installed "local-caffeine").to eq(pretty_installed "local-caffeine")
+ expect(Hbc::CLI::Search.highlight_installed("local-caffeine")).to eq(pretty_installed("local-caffeine"))
end
end