@@ -16,7 +16,7 @@ def test_tap
1616 end
1717
1818 assert_match "homebrew/foo" , cmd ( "tap" )
19- assert_match "homebrew/versions " , cmd ( "tap" , "--list-official" )
19+ assert_match "homebrew/science " , cmd ( "tap" , "--list-official" )
2020 assert_match "2 taps" , cmd ( "tap-info" )
2121 assert_match "https://github.com/Homebrew/homebrew-foo" , cmd ( "tap-info" , "homebrew/foo" )
2222 assert_match "https://github.com/Homebrew/homebrew-foo" , cmd ( "tap-info" , "--json=v1" , "--installed" )
@@ -162,17 +162,17 @@ def test_remote
162162 assert_raises ( TapUnavailableError ) { Tap . new ( "Homebrew" , "bar" ) . remote }
163163 refute_predicate @tap , :custom_remote?
164164
165- version_tap = Tap . new ( "Homebrew" , "versions " )
166- version_tap . path . mkpath
167- version_tap . path . cd do
165+ services_tap = Tap . new ( "Homebrew" , "services " )
166+ services_tap . path . mkpath
167+ services_tap . path . cd do
168168 shutup do
169169 system "git" , "init"
170- system "git" , "remote" , "add" , "origin" , "https://github.com/Homebrew/homebrew-versions "
170+ system "git" , "remote" , "add" , "origin" , "https://github.com/Homebrew/homebrew-services "
171171 end
172172 end
173- refute_predicate version_tap , :private?
173+ refute_predicate services_tap , :private?
174174 ensure
175- version_tap . path . rmtree if version_tap
175+ services_tap . path . rmtree if services_tap
176176 end
177177
178178 def test_remote_not_git_repo
0 commit comments