aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/utils_spec.rb
diff options
context:
space:
mode:
authorMike McQuaid2017-06-02 15:45:59 +0100
committerGitHub2017-06-02 15:45:59 +0100
commit760f92abbad0159fb522cca6a8555123e736e285 (patch)
tree4e1b68113a758fbef9a20b603a9f9b37932bc16b /Library/Homebrew/test/utils_spec.rb
parentdaa67886211b1818996f1d06bca8200a31dd5d73 (diff)
parentde78999defacb0dff102635457884730ff059d0b (diff)
downloadbrew-760f92abbad0159fb522cca6a8555123e736e285.tar.bz2
Merge pull request #2717 from orangea/brew-edit-fix
don't try to find the full path of the editor in 'brew edit'
Diffstat (limited to 'Library/Homebrew/test/utils_spec.rb')
-rw-r--r--Library/Homebrew/test/utils_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/utils_spec.rb b/Library/Homebrew/test/utils_spec.rb
index be224990a..f3bf98486 100644
--- a/Library/Homebrew/test/utils_spec.rb
+++ b/Library/Homebrew/test/utils_spec.rb
@@ -188,14 +188,14 @@ describe "globally-scoped helper methods" do
end
specify "#which_editor" do
- ENV["HOMEBREW_EDITOR"] = "vemate"
+ ENV["HOMEBREW_EDITOR"] = "vemate -w"
ENV["HOMEBREW_PATH"] = dir
editor = "#{dir}/vemate"
FileUtils.touch editor
FileUtils.chmod 0755, editor
- expect(which_editor).to eql editor
+ expect(which_editor).to eq("vemate -w")
end
specify "#gzip" do