DEV: Fix random typos (#29161)

This commit is contained in:
Jarek Radosz
2024-10-10 16:11:55 +02:00
committed by GitHub
parent 909264ee75
commit 8105b545c3
6 changed files with 10 additions and 10 deletions

View File

@ -48,14 +48,14 @@ RSpec.describe Discourse do
context "with a non standard port specified" do
before { SiteSetting.port = 3000 }
it "returns the non standart port in the base url" do
it "returns the non standard port in the base url" do
expect(Discourse.base_url).to eq("http://foo.com:3000")
end
end
end
describe "asset_filter_options" do
it "obmits path if request is missing" do
it "omits path if request is missing" do
opts = Discourse.asset_filter_options(:js, nil)
expect(opts[:path]).to be_blank
end