Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling; Github -> GitHub #17516

Merged
merged 1 commit into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
strategy.fetch
end

context "with Github Packages authentication defined" do
context "with GitHub Packages authentication defined" do
let(:authorization) { "Bearer dead-beef-cafe" }

it "calls curl with the provided header value" do
Expand Down
12 changes: 6 additions & 6 deletions Library/Homebrew/test/formula_auditor_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class Foo < Formula
end

it "checks online and verifies that a standard license id is the same " \
"as what is indicated on its Github repo", :needs_network do
"as what is indicated on its GitHub repo", :needs_network do
formula_text = <<~RUBY
class Cask < Formula
url "https://github.com/cask/cask/archive/v0.8.4.tar.gz"
Expand All @@ -297,7 +297,7 @@ class Cask < Formula
end

it "checks online and verifies that a standard license id with AND is the same " \
"as what is indicated on its Github repo", :needs_network do
"as what is indicated on its GitHub repo", :needs_network do
formula_text = <<~RUBY
class Cask < Formula
url "https://github.com/cask/cask/archive/v0.8.4.tar.gz"
Expand All @@ -313,7 +313,7 @@ class Cask < Formula
end

it "checks online and verifies that a standard license id with WITH is the same " \
"as what is indicated on its Github repo", :needs_network do
"as what is indicated on its GitHub repo", :needs_network do
formula_text = <<~RUBY
class Cask < Formula
url "https://github.com/cask/cask/archive/v0.8.4.tar.gz"
Expand Down Expand Up @@ -395,7 +395,7 @@ class Cask < Formula
end

it "checks online and detects that a formula-specified license is not " \
"the same as what is indicated on its Github repository", :needs_network do
"the same as what is indicated on its GitHub repository", :needs_network do
formula_text = <<~RUBY
class Cask < Formula
url "https://github.com/cask/cask/archive/v0.8.4.tar.gz"
Expand Down Expand Up @@ -429,7 +429,7 @@ class Cask < Formula
end

it "checks online and detects that an array of license does not contain " \
"what is indicated on its Github repository", :needs_network do
"what is indicated on its GitHub repository", :needs_network do
formula_text = <<~RUBY
class Cask < Formula
url "https://github.com/cask/cask/archive/v0.8.4.tar.gz"
Expand All @@ -446,7 +446,7 @@ class Cask < Formula
end

it "checks online and verifies that an array of license contains " \
"what is indicated on its Github repository", :needs_network do
"what is indicated on its GitHub repository", :needs_network do
formula_text = <<~RUBY
class Cask < Formula
url "https://github.com/cask/cask/archive/v0.8.4.tar.gz"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
expect(github_latest.generate_input_values(github_urls[:repository_upload])).to eq(generated)
end

it "returns an empty hash for a non-Github URL" do
it "returns an empty hash for a non-GitHub URL" do
expect(github_latest.generate_input_values(non_github_url)).to eq({})
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
expect(github_releases.generate_input_values(github_urls[:repository_upload])).to eq(generated)
end

it "returns an empty hash for a non-Github URL" do
it "returns an empty hash for a non-GitHub URL" do
expect(github_releases.generate_input_values(non_github_url)).to eq({})
end
end
Expand Down