diff options
| author | Markus Reiter | 2017-06-20 20:32:37 +0200 |
|---|---|---|
| committer | GitHub | 2017-06-20 20:32:37 +0200 |
| commit | 17b2694b1de33214e9bfd69a70638003cff2fa16 (patch) | |
| tree | 301fa0d8f42c92f28eb11c9a94329397f024ddad /Library/Homebrew/test | |
| parent | 96f8452e17f7a530b4cc823346b673f7626e6e95 (diff) | |
| parent | 19cf6dcb3f35ca475a5b96a56913aabb05e9918d (diff) | |
| download | brew-17b2694b1de33214e9bfd69a70638003cff2fa16.tar.bz2 | |
Merge pull request #2806 from reitermarkus/apfs
🔨 Fix sorting on APFS.
Diffstat (limited to 'Library/Homebrew/test')
| -rw-r--r-- | Library/Homebrew/test/formula_pin_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/formula_pin_spec.rb b/Library/Homebrew/test/formula_pin_spec.rb index 909bfbc2b..ce952a957 100644 --- a/Library/Homebrew/test/formula_pin_spec.rb +++ b/Library/Homebrew/test/formula_pin_spec.rb @@ -9,7 +9,7 @@ describe FormulaPin do formula.rack.mkpath allow(formula).to receive(:installed_prefixes) do - formula.rack.directory? ? formula.rack.subdirs : [] + formula.rack.directory? ? formula.rack.subdirs.sort : [] end allow(formula).to receive(:installed_kegs) do |
