We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c823e1 commit 86e378eCopy full SHA for 86e378e
packages/realtime_client/test/socket_test.dart
@@ -394,6 +394,8 @@ void main() {
394
395
when(() => mockedSocketChannel.sink).thenReturn(mockedSink);
396
when(() => mockedSink.close()).thenAnswer((_) => Future.value());
397
+ when(() => mockedSink.close(any(), any()))
398
+ .thenAnswer((_) => Future.value());
399
});
400
401
test('sends data to connection when connected', () {
0 commit comments