We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e8d967 commit 78cb949Copy full SHA for 78cb949
spec/lib/secure_headers/headers/content_security_policy_spec.rb
@@ -107,8 +107,8 @@ module SecureHeaders
107
end
108
109
it "does not deduplicate non-matching schema source expressions" do
110
- csp = ContentSecurityPolicy.new(default_src: %w(*.example.org wss://*.example.org))
111
- expect(csp.value).to eq("default-src *.example.org wss://*.example.org")
+ csp = ContentSecurityPolicy.new(default_src: %w(*.example.org wss://example.example.org))
+ expect(csp.value).to eq("default-src *.example.org wss://example.example.org")
112
113
114
it "creates maximally strict sandbox policy when passed no sandbox token values" do
0 commit comments