summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCollin McNeese <cmcneese@chef.io>2021-10-29 16:25:16 -0500
committerCollin McNeese <cmcneese@chef.io>2021-10-29 16:25:16 -0500
commit6267e6b21f9d4b928e1c5f54eaf17bf0cb5425bc (patch)
tree1792b29d02202675f90aa52de4da46ffc821bac9
parentee0a807f4539e800cd443a43eb0fd68895cca965 (diff)
downloadchef-6267e6b21f9d4b928e1c5f54eaf17bf0cb5425bc.tar.gz
spellcheck fix
Signed-off-by: Collin McNeese <cmcneese@chef.io>
-rw-r--r--spec/unit/resource/rhsm_register_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/resource/rhsm_register_spec.rb b/spec/unit/resource/rhsm_register_spec.rb
index f3faf13d0f..7094046066 100644
--- a/spec/unit/resource/rhsm_register_spec.rb
+++ b/spec/unit/resource/rhsm_register_spec.rb
@@ -159,14 +159,14 @@ describe Chef::Resource::RhsmRegister do
end
context "when a server_url is provided" do
- it "returns a command containing the serverurl" do
+ it "returns a command containing the server url" do
allow(resource).to receive(:server_url).and_return("https://fqdn.example")
expect(provider.register_command).to match("--serverurl=https://fqdn.example")
end
end
context "when a base_url is provided" do
- it "returns a command containing the baseurl" do
+ it "returns a command containing the base url" do
allow(resource).to receive(:base_url).and_return("https://fqdn.example")
expect(provider.register_command).to match("--baseurl=https://fqdn.example")
end