tests: Stub connect_socket()

This commit is contained in:
sleepycatcoding 2023-07-15 01:15:30 +03:00 committed by Nathan Adams
parent ff1a9bb083
commit 67aa0fcbd4
1 changed files with 5 additions and 0 deletions

View File

@ -94,4 +94,9 @@ impl NavigatorBackend for TestNavigatorBackend {
fn pre_process_url(&self, url: Url) -> Url {
url
}
fn connect_socket(&mut self, _host: &str, _port: u16) -> Option<Box<dyn ruffle_core::socket::SocketConnection>> {
// TODO: Stub impl.
None
}
}