File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/stream_feed/test Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ void main() {
8282 );
8383
8484 test ("don't throw if secret provided while running on server-side" , () {
85- StreamFeedClient .connect ('apiKey' , secret: 'secret' , runner: Runner .server);
85+ StreamFeedClient .connect ('apiKey' ,
86+ secret: 'secret' , runner: Runner .server);
8687 });
8788
8889 test ("don't throw if token provided while running on client-side" , () {
@@ -113,7 +114,8 @@ void main() {
113114 final mockApi = MockAPI ();
114115 when (() => mockApi.users).thenReturn (MockUserAPI ());
115116 final token = TokenHelper .buildFrontendToken ('secret' , 'userId' );
116- final client = StreamFeedClientImpl ('apiKey' , userToken: token, api: mockApi);
117+ final client =
118+ StreamFeedClientImpl ('apiKey' , userToken: token, api: mockApi);
117119
118120 const targetUrl = 'targetUrl' ;
119121
You can’t perform that action at this time.
0 commit comments