@@ -406,7 +406,7 @@ def test_lookup_single_key_empty_response(self):
406
406
self .assertEqual (cw ['method' ], 'POST' )
407
407
self .assertEqual (cw ['headers' ],
408
408
{'Content-Type' : 'application/x-protobuf' ,
409
- 'Content-Length' : '26 ' ,
409
+ 'Content-Length' : '24 ' ,
410
410
'User-Agent' : conn .USER_AGENT ,
411
411
})
412
412
rq_class = datastore_pb .LookupRequest
@@ -445,7 +445,7 @@ def test_lookup_single_key_nonempty_response(self):
445
445
self .assertEqual (cw ['method' ], 'POST' )
446
446
self .assertEqual (cw ['headers' ],
447
447
{'Content-Type' : 'application/x-protobuf' ,
448
- 'Content-Length' : '26 ' ,
448
+ 'Content-Length' : '24 ' ,
449
449
'User-Agent' : conn .USER_AGENT ,
450
450
})
451
451
rq_class = datastore_pb .LookupRequest
@@ -481,7 +481,7 @@ def test_lookup_multiple_keys_empty_response(self):
481
481
self .assertEqual (cw ['method' ], 'POST' )
482
482
self .assertEqual (cw ['headers' ],
483
483
{'Content-Type' : 'application/x-protobuf' ,
484
- 'Content-Length' : '52 ' ,
484
+ 'Content-Length' : '48 ' ,
485
485
'User-Agent' : conn .USER_AGENT ,
486
486
})
487
487
rq_class = datastore_pb .LookupRequest
@@ -524,7 +524,7 @@ def test_commit_wo_transaction(self):
524
524
self .assertEqual (cw ['method' ], 'POST' )
525
525
self .assertEqual (cw ['headers' ],
526
526
{'Content-Type' : 'application/x-protobuf' ,
527
- 'Content-Length' : '47 ' ,
527
+ 'Content-Length' : '45 ' ,
528
528
'User-Agent' : conn .USER_AGENT ,
529
529
})
530
530
rq_class = datastore_pb .CommitRequest
@@ -570,7 +570,7 @@ def id(self):
570
570
self .assertEqual (cw ['method' ], 'POST' )
571
571
self .assertEqual (cw ['headers' ],
572
572
{'Content-Type' : 'application/x-protobuf' ,
573
- 'Content-Length' : '53 ' ,
573
+ 'Content-Length' : '51 ' ,
574
574
'User-Agent' : conn .USER_AGENT ,
575
575
})
576
576
rq_class = datastore_pb .CommitRequest
@@ -605,7 +605,7 @@ def test_save_entity_wo_transaction_w_upsert(self):
605
605
self .assertEqual (cw ['method' ], 'POST' )
606
606
self .assertEqual (cw ['headers' ],
607
607
{'Content-Type' : 'application/x-protobuf' ,
608
- 'Content-Length' : '47 ' ,
608
+ 'Content-Length' : '45 ' ,
609
609
'User-Agent' : conn .USER_AGENT ,
610
610
})
611
611
rq_class = datastore_pb .CommitRequest
@@ -656,7 +656,7 @@ def test_save_entity_wo_transaction_w_auto_id(self):
656
656
self .assertEqual (cw ['method' ], 'POST' )
657
657
self .assertEqual (cw ['headers' ],
658
658
{'Content-Type' : 'application/x-protobuf' ,
659
- 'Content-Length' : '44 ' ,
659
+ 'Content-Length' : '42 ' ,
660
660
'User-Agent' : conn .USER_AGENT ,
661
661
})
662
662
rq_class = datastore_pb .CommitRequest
@@ -751,7 +751,7 @@ def test_delete_entities_wo_transaction(self):
751
751
self .assertEqual (cw ['method' ], 'POST' )
752
752
self .assertEqual (cw ['headers' ],
753
753
{'Content-Type' : 'application/x-protobuf' ,
754
- 'Content-Length' : '30 ' ,
754
+ 'Content-Length' : '28 ' ,
755
755
'User-Agent' : conn .USER_AGENT ,
756
756
})
757
757
rq_class = datastore_pb .CommitRequest
@@ -816,7 +816,7 @@ def test_delete_entity_wo_transaction(self):
816
816
self .assertEqual (cw ['method' ], 'POST' )
817
817
self .assertEqual (cw ['headers' ],
818
818
{'Content-Type' : 'application/x-protobuf' ,
819
- 'Content-Length' : '30 ' ,
819
+ 'Content-Length' : '28 ' ,
820
820
'User-Agent' : conn .USER_AGENT ,
821
821
})
822
822
rq_class = datastore_pb .CommitRequest
0 commit comments