diff options
| author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-04-02 12:57:05 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-02 12:57:05 +1100 |
| commit | 858abbe745aa8188654120d4999ab983b014c197 (patch) | |
| tree | 85b314b1e8166aaa9efb2ba1f416abfa00f0b7a8 /tests/testdata/run | |
| parent | b0c1bd82a85ddb54ffe717a2c158c33c0be99fe8 (diff) | |
chore: update `std` submodule to 0.221.0 (#23112)
Diffstat (limited to 'tests/testdata/run')
| -rw-r--r-- | tests/testdata/run/textproto.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testdata/run/textproto.ts b/tests/testdata/run/textproto.ts index 7297fc446..f35ab6734 100644 --- a/tests/testdata/run/textproto.ts +++ b/tests/testdata/run/textproto.ts @@ -152,7 +152,7 @@ export class TextProtoReader { //TODO(SmashingQuasar): Kept skipSpace to preserve behavior but it should be looked into to check if it makes sense when this is used. if (r !== null && this.skipSpace(r.line) !== 0) { - line = concat(line, r.line); + line = concat([line, r.line]); } } while (r !== null && r.more); |
