From 098076a16a0b11a81fdf6b6bc36a6afca358a515 Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Mon, 6 Mar 2023 08:27:31 -0800 Subject: [PATCH] brew style --fix --- Library/Homebrew/test/extend/array_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/extend/array_spec.rb b/Library/Homebrew/test/extend/array_spec.rb index 6654b23a69..876cf90494 100644 --- a/Library/Homebrew/test/extend/array_spec.rb +++ b/Library/Homebrew/test/extend/array_spec.rb @@ -19,7 +19,7 @@ describe Array do it "converts an array to a sentence with a custom last word connector" do expect(["one", "two", "three"].to_sentence(last_word_connector: ", and also ")) - .to eq("one, two, and also three") + .to eq("one, two, and also three") expect(["one", "two", "three"].to_sentence(last_word_connector: " ")).to eq("one, two three") expect(["one", "two", "three"].to_sentence(last_word_connector: " and ")).to eq("one, two and three") end