diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-09-27 06:22:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 12:22:32 +0200 |
commit | df02e315075456f8d5f75472abbb1fa81e237827 (patch) | |
tree | d0dc9eb502d17f5bfd463bfd9162f46fead4e307 /std/encoding/csv_test.ts | |
parent | c28757f379fd1141c817b21ce2fe4dd86b29cd8c (diff) |
feat(fmt): Sort named import and export specifiers (#7711)
Diffstat (limited to 'std/encoding/csv_test.ts')
-rw-r--r-- | std/encoding/csv_test.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/std/encoding/csv_test.ts b/std/encoding/csv_test.ts index aab9e86b1..1a2d892cc 100644 --- a/std/encoding/csv_test.ts +++ b/std/encoding/csv_test.ts @@ -6,13 +6,13 @@ import { assertEquals, assertThrowsAsync } from "../testing/asserts.ts"; import { - readMatrix, - parse, ERR_BARE_QUOTE, - ERR_QUOTE, - ERR_INVALID_DELIM, ERR_FIELD_COUNT, + ERR_INVALID_DELIM, + ERR_QUOTE, + parse, ParseError, + readMatrix, } from "./csv.ts"; import { StringReader } from "../io/readers.ts"; import { BufReader } from "../io/bufio.ts"; |