Skip to content

Commit 51503ca

Browse files
Clean up imports
1 parent c5d598b commit 51503ca

File tree

1 file changed

+3
-20
lines changed

1 file changed

+3
-20
lines changed

packages/firestore/test/unit/model/field_value.test.ts

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,32 +18,15 @@
1818
import { expect } from 'chai';
1919
import { GeoPoint } from '../../../src/api/geo_point';
2020
import { Timestamp } from '../../../src/api/timestamp';
21-
import { DatabaseId } from '../../../src/core/database_info';
22-
import { DocumentKey } from '../../../src/model/document_key';
23-
import {
24-
FieldValue,
25-
ServerTimestampValue,
26-
TypeOrder
27-
} from '../../../src/model/field_value';
21+
import { TypeOrder } from '../../../src/model/field_value';
2822
import {
2923
ObjectValue,
3024
PrimitiveValue
3125
} from '../../../src/model/proto_field_value';
32-
import { canonicalId, estimateByteSize } from '../../../src/model/values';
3326
import { ByteString } from '../../../src/util/byte_string';
34-
import { primitiveComparator } from '../../../src/util/misc';
3527
import * as typeUtils from '../../../src/util/types';
36-
import {
37-
blob,
38-
dbId,
39-
expectCorrectComparisonGroups,
40-
expectEqualitySets,
41-
field,
42-
key,
43-
mask,
44-
ref
45-
} from '../../util/helpers';
46-
import { refValue, valueOf } from '../../util/values';
28+
import { blob, field, mask } from '../../util/helpers';
29+
import { valueOf } from '../../util/values';
4730

4831
describe('FieldValue', () => {
4932
const date1 = new Date(2016, 4, 2, 1, 5);

0 commit comments

Comments
 (0)