diff options
| author | Markus Reiter | 2017-04-27 20:17:06 +0200 |
|---|---|---|
| committer | Markus Reiter | 2017-05-08 13:37:28 +0200 |
| commit | 5828eefd01cd61d2a7fbf439620b21f6f5b3d1b1 (patch) | |
| tree | feff6d0886a8b2523da9d737a79f620e13b0f118 /Library/Homebrew/test/support | |
| parent | f1d4c4be78905be0d5fd83922ff1262ed92ba4e8 (diff) | |
| download | brew-5828eefd01cd61d2a7fbf439620b21f6f5b3d1b1.tar.bz2 | |
Remove `to_s` from some `Pathname`s.
Diffstat (limited to 'Library/Homebrew/test/support')
| -rw-r--r-- | Library/Homebrew/test/support/helper/spec/shared_examples/hbc_staged.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/support/helper/spec/shared_examples/hbc_staged.rb b/Library/Homebrew/test/support/helper/spec/shared_examples/hbc_staged.rb index 31083ee58..1364c13a3 100644 --- a/Library/Homebrew/test/support/helper/spec/shared_examples/hbc_staged.rb +++ b/Library/Homebrew/test/support/helper/spec/shared_examples/hbc_staged.rb @@ -24,7 +24,7 @@ shared_examples Hbc::Staged do end it "can get the Info.plist file for the primary app" do - expect(staged.info_plist_file.to_s).to include Hbc.appdir.join("TestCask.app/Contents/Info.plist") + expect(staged.info_plist_file).to eq Hbc.appdir.join("TestCask.app/Contents/Info.plist") end it "can execute commands on the Info.plist file" do |
