mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-13 06:54:54 +03:00
Remove whitespace after comma
This commit is contained in:
parent
c97cfb7cde
commit
56bb2042b8
@ -24,7 +24,7 @@ Content-Type: application/json
|
||||
|
||||
POST http://localhost:8000/post-file
|
||||
Content-Type:
|
||||
file, tests_ok/data.bin;
|
||||
file,tests_ok/data.bin;
|
||||
|
||||
GET http://localhost:8000/redirect-absolute
|
||||
[Options]
|
||||
|
@ -484,7 +484,7 @@ fn lint_bytes(bytes: &Bytes) -> Bytes {
|
||||
|
||||
fn lint_base64(base64: &Base64) -> Base64 {
|
||||
Base64 {
|
||||
space0: one_whitespace(),
|
||||
space0: empty_whitespace(),
|
||||
value: base64.value.clone(),
|
||||
encoded: base64.encoded.clone(),
|
||||
space1: empty_whitespace(),
|
||||
@ -493,7 +493,7 @@ fn lint_base64(base64: &Base64) -> Base64 {
|
||||
|
||||
fn lint_hex(hex: &Hex) -> Hex {
|
||||
Hex {
|
||||
space0: one_whitespace(),
|
||||
space0: empty_whitespace(),
|
||||
value: hex.value.clone(),
|
||||
encoded: hex.encoded.clone(),
|
||||
space1: empty_whitespace(),
|
||||
@ -502,7 +502,7 @@ fn lint_hex(hex: &Hex) -> Hex {
|
||||
|
||||
fn lint_file(file: &File) -> File {
|
||||
File {
|
||||
space0: one_whitespace(),
|
||||
space0: empty_whitespace(),
|
||||
filename: Filename {
|
||||
value: file.filename.value.clone(),
|
||||
source_info: SourceInfo::new(0, 0, 0, 0),
|
||||
|
Loading…
Reference in New Issue
Block a user