Skip to content

Commit 76a72fa

Browse files
committed
fix(quicktype): quicktype return without trailing spaces
1 parent 339b1ef commit 76a72fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/features/quick_type.vader

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Expect (generate a struct from json):
1212

1313

1414
type JSON struct {
15-
Hello string `json:"hello"`
15+
Hello string `json:"hello"`
1616
Greeting int64 `json:"greeting"`
1717
}
1818

@@ -28,7 +28,7 @@ Expect:
2828
package json
2929

3030
type JSON struct {
31-
Hello string `json:"hello"`
31+
Hello string `json:"hello"`
3232
Greeting int64 `json:"greeting"`
3333
}
3434

@@ -43,7 +43,7 @@ Expect:
4343

4444

4545
type JSON struct {
46-
Hello string `json:"hello"`
46+
Hello string `json:"hello"`
4747
Greeting int64 `json:"greeting"`
4848
}
4949

@@ -58,7 +58,7 @@ Expect:
5858

5959

6060
type MyObject struct {
61-
Hello string `json:"hello"`
61+
Hello string `json:"hello"`
6262
Greeting int64 `json:"greeting"`
6363
}
6464

0 commit comments

Comments
 (0)