@@ -106,8 +106,10 @@ def test_send_group_multiple_data_as_list(self):
106
106
test_feed1 = io .create_feed (Feed (name = "testfeed1" ), test_group .key )
107
107
test_feed2 = io .create_feed (Feed (name = "testfeed2" ), test_group .key )
108
108
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 + "." , "" ))
111
113
]
112
114
io .send_group_multiple_data (test_group .key , data_list )
113
115
data = io .receive (test_feed1 .key )
@@ -130,8 +132,10 @@ def test_send_group_multiple_data_as_dict(self):
130
132
test_feed2 = io .create_feed (Feed (name = "testfeed2" ), test_group .key )
131
133
data_dict = {
132
134
"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 }
135
139
],
136
140
"lat" : 40.726190 ,
137
141
"lon" : - 74.005334 ,
@@ -146,7 +150,6 @@ def test_send_group_multiple_data_as_dict(self):
146
150
self .ensure_feed_deleted (io , 'testfeed2' )
147
151
self .ensure_group_deleted (io , 'testgroup' )
148
152
149
-
150
153
def test_receive_next (self ):
151
154
"""receive_next
152
155
"""
0 commit comments