Skip to content

Commit

Permalink
Fixed bad merge (my bad!)
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment committed Jan 16, 2021
1 parent 2940bad commit 462d2a0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/languages/http!+uri/request-line_feature.test
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ PATCH http://example.com HTTP/1.0
TRACE http://example.com HTTP/1.0
CONNECT http://example.com HTTP/1.0
GET /path/to/foo.html HTTP/1.1
GET / HTTP/1.1

----------------------------------------------------

Expand Down Expand Up @@ -144,6 +145,15 @@ GET /path/to/foo.html HTTP/1.1
]]
]],
" HTTP/1.1"
]],
["request-line", [
["property", "GET"],
["url", [
["path", [
["path-separator", "/"]
]]
]],
" HTTP/1.1"
]]
]

Expand Down
6 changes: 6 additions & 0 deletions tests/languages/http/request-line_feature.test
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ PATCH http://example.com HTTP/1.0
TRACE http://example.com HTTP/1.0
CONNECT http://example.com HTTP/1.0
GET /path/to/foo.html HTTP/1.1
GET / HTTP/1.1

----------------------------------------------------

Expand Down Expand Up @@ -55,6 +56,11 @@ GET /path/to/foo.html HTTP/1.1
["property", "GET"],
["url", "/path/to/foo.html"],
" HTTP/1.1"
]],
["request-line", [
["property", "GET"],
["url", "/"],
" HTTP/1.1"
]]
]

Expand Down

0 comments on commit 462d2a0

Please sign in to comment.