@@ -220,7 +220,7 @@ def test_geo_point(self):
220220 self .assertEqual (result , expected )
221221
222222 def test_array (self ):
223- from google .cloud .firestore_v1beta1 .proto .document import ArrayValue
223+ from google .cloud .firestore_v1beta1 .types .document import ArrayValue
224224
225225 result = self ._call_fut ([99 , True , 118.5 ])
226226
@@ -235,7 +235,7 @@ def test_array(self):
235235 self .assertEqual (result , expected )
236236
237237 def test_map (self ):
238- from google .cloud .firestore_v1beta1 .proto .document import MapValue
238+ from google .cloud .firestore_v1beta1 .types .document import MapValue
239239
240240 result = self ._call_fut ({"abc" : 285 , "def" : b"piglatin" })
241241
@@ -264,8 +264,8 @@ def _call_fut(values_dict):
264264 def test_many_types (self ):
265265 from google .protobuf import struct_pb2
266266 from google .protobuf import timestamp_pb2
267- from google .cloud .firestore_v1beta1 .proto .document import ArrayValue
268- from google .cloud .firestore_v1beta1 .proto .document import MapValue
267+ from google .cloud .firestore_v1beta1 .types .document import ArrayValue
268+ from google .cloud .firestore_v1beta1 .types .document import MapValue
269269
270270 dt_seconds = 1497397225
271271 dt_nanos = 465964000
@@ -536,8 +536,8 @@ def _call_fut(value_fields, client=mock.sentinel.client):
536536 def test_many_types (self ):
537537 from google .protobuf import struct_pb2
538538 from google .protobuf import timestamp_pb2
539- from google .cloud .firestore_v1beta1 .proto .document import ArrayValue
540- from google .cloud .firestore_v1beta1 .proto .document import MapValue
539+ from google .cloud .firestore_v1beta1 .types .document import ArrayValue
540+ from google .cloud .firestore_v1beta1 .types .document import MapValue
541541 from google .cloud ._helpers import UTC
542542 from google .cloud .firestore_v1beta1 .field_path import FieldPath
543543
@@ -2052,7 +2052,7 @@ def test_modify_write(self):
20522052
20532053
20542054def _value_pb (** kwargs ):
2055- from google .cloud .firestore_v1beta1 .proto .document import Value
2055+ from google .cloud .firestore_v1beta1 .types .document import Value
20562056
20572057 return Value (** kwargs )
20582058
0 commit comments