aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJoshua Morten2016-12-13 15:40:31 -0800
committerJoshua Morten2016-12-13 15:40:31 -0800
commit6eb7aa6d4dfa22a1075274b226fc020ccee1e1d6 (patch)
tree7753f0e6ec5ac9c94de97202586b727af2642ec4 /Library
parent99f42146c06333f820f45ed1940c5487990e2b31 (diff)
downloadbrew-6eb7aa6d4dfa22a1075274b226fc020ccee1e1d6.tar.bz2
fix typo
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/support/fixtures/receipt.json2
-rw-r--r--Library/Homebrew/test/tab_test.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/support/fixtures/receipt.json b/Library/Homebrew/test/support/fixtures/receipt.json
index 404251026..b20626bbe 100644
--- a/Library/Homebrew/test/support/fixtures/receipt.json
+++ b/Library/Homebrew/test/support/fixtures/receipt.json
@@ -25,7 +25,7 @@
}
],
"source": {
- "path": "/usr/local/Library/Taps/hombrew/homebrew-core/Formula/foo.rb",
+ "path": "/usr/local/Library/Taps/homebrew/homebrew-core/Formula/foo.rb",
"tap": "homebrew/core",
"spec": "stable",
"versions": {
diff --git a/Library/Homebrew/test/tab_test.rb b/Library/Homebrew/test/tab_test.rb
index ef653103c..5d83b5907 100644
--- a/Library/Homebrew/test/tab_test.rb
+++ b/Library/Homebrew/test/tab_test.rb
@@ -105,7 +105,7 @@ class TabTests < Homebrew::TestCase
def test_from_file
path = Pathname.new("#{TEST_FIXTURE_DIR}/receipt.json")
tab = Tab.from_file(path)
- source_path = "/usr/local/Library/Taps/hombrew/homebrew-core/Formula/foo.rb"
+ source_path = "/usr/local/Library/Taps/homebrew/homebrew-core/Formula/foo.rb"
runtime_dependencies = [{ "full_name" => "foo", "version" => "1.0" }]
changed_files = %w[INSTALL_RECEIPT.json bin/foo]