@@ -106,8 +106,10 @@ def test_send_group_multiple_data_as_list(self):
106106 test_feed1 = io .create_feed (Feed (name = "testfeed1" ), test_group .key )
107107 test_feed2 = io .create_feed (Feed (name = "testfeed2" ), test_group .key )
108108 data_list = [
109- GroupFeedData (value = 42 , key = test_feed1 .key .replace (test_group .key + "." , "" )),
110- GroupFeedData (value = 42 , key = test_feed2 .key .replace (test_group .key + "." , "" ))
109+ GroupFeedData (value = 42 , key = test_feed1 .key .replace (
110+ test_group .key + "." , "" )),
111+ GroupFeedData (value = 42 , key = test_feed2 .key .replace (
112+ test_group .key + "." , "" ))
111113 ]
112114 io .send_group_multiple_data (test_group .key , data_list )
113115 data = io .receive (test_feed1 .key )
@@ -130,8 +132,10 @@ def test_send_group_multiple_data_as_dict(self):
130132 test_feed2 = io .create_feed (Feed (name = "testfeed2" ), test_group .key )
131133 data_dict = {
132134 "feeds" : [
133- {"key" : test_feed1 .key .replace (test_group .key + "." , "" ), "value" : 43 },
134- {"key" : test_feed2 .key .replace (test_group .key + "." , "" ), "value" : 43 }
135+ {"key" : test_feed1 .key .replace (
136+ test_group .key + "." , "" ), "value" : 43 },
137+ {"key" : test_feed2 .key .replace (
138+ test_group .key + "." , "" ), "value" : 43 }
135139 ],
136140 "lat" : 40.726190 ,
137141 "lon" : - 74.005334 ,
@@ -146,7 +150,6 @@ def test_send_group_multiple_data_as_dict(self):
146150 self .ensure_feed_deleted (io , 'testfeed2' )
147151 self .ensure_group_deleted (io , 'testgroup' )
148152
149-
150153 def test_receive_next (self ):
151154 """receive_next
152155 """
0 commit comments