From e4f41fddeb3a39e61d572f111a446cb6be44e083 Mon Sep 17 00:00:00 2001 From: Krille Date: Mon, 10 Feb 2025 10:00:04 +0100 Subject: [PATCH] fix: WebRTC videoValue missing --- test/markdown_test.dart | 2 +- test/webrtc_stub.dart | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/test/markdown_test.dart b/test/markdown_test.dart index 8b56f012..12c7b2fa 100644 --- a/test/markdown_test.dart +++ b/test/markdown_test.dart @@ -92,7 +92,7 @@ void main() { ); }); test('Other block elements', () { - expect(markdown('# blah\n\nblubb'), '

blah


blubb

'); + expect(markdown('# blah\n\nblubb'), '

blah

blubb

'); }); test('lists', () { expect( diff --git a/test/webrtc_stub.dart b/test/webrtc_stub.dart index 76897198..e336cf12 100644 --- a/test/webrtc_stub.dart +++ b/test/webrtc_stub.dart @@ -844,4 +844,8 @@ class MockVideoRenderer implements VideoRenderer { // Mock implementation for disposing VideoRenderer Logs().i('Mock: Disposing VideoRenderer'); } + + @override + // TODO: implement videoValue + RTCVideoValue get videoValue => RTCVideoValue.empty; }