Skip to content

Commit

Permalink
fix e2e test for mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
amofakhar committed Jun 11, 2024
1 parent d6c0fb4 commit 02b3276
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,17 @@ def test_replicate_mongodb_to_sf(self):
{
'age': randint(10, 30),
'id': 1001,
'uuid': uuid.uuid4(),
'uuid': bson.Binary.from_uuid(uuid.uuid4()),
'ts': bson.Timestamp(12030, 500),
},
{
'date': datetime.utcnow(),
'id': 1002,
'uuid': uuid.uuid4(),
'uuid': bson.Binary.from_uuid(uuid.uuid4()),
'regex': bson.Regex(r'^[A-Z]\\w\\d{2,6}.*$'),
},
{
'uuid': uuid.uuid4(),
'uuid': bson.Binary.from_uuid(uuid.uuid4()),
'id': 1003,
'decimal': bson.Decimal128(
decimal.Decimal('5.64547548425446546546644')
Expand Down

0 comments on commit 02b3276

Please sign in to comment.