Correct a spelling error in the spec.

This commit is contained in:
James Coglan
2017-09-02 12:18:05 +01:00
parent b315aa08d6
commit 36cc2c5c73
+1 -1
View File
@@ -493,7 +493,7 @@ test.describe("Extensions", function() { with(this) {
assertThrows(SyntaxError, function() { extensions.generateResponse("x-webkit- -frame") })
}})
it("returns a response for potentially conflicting extensions if their preceeding extensions don't build a session", function() { with(this) {
it("returns a response for potentially conflicting extensions if their preceding extensions don't build a session", function() { with(this) {
stub(ext, "createServerSession").returns(null)
assertEqual( "tar; gzip", extensions.generateResponse("deflate, tar") )
}})