mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-16 12:55:13 +00:00
uriplaylistbin: pass valid URI in tests
Fix critical raised by libsoup, see https://gitlab.gnome.org/GNOME/libsoup/-/merge_requests/346 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1471>
This commit is contained in:
parent
8a6bcb712f
commit
1e88971ec8
1 changed files with 2 additions and 2 deletions
|
@ -47,14 +47,14 @@ impl TestMedia {
|
|||
|
||||
fn missing_file() -> Self {
|
||||
Self {
|
||||
uri: "file:///not-there.ogg".to_string(),
|
||||
uri: "file://not-there.ogg".to_string(),
|
||||
len: 10.mseconds(),
|
||||
}
|
||||
}
|
||||
|
||||
fn missing_http() -> Self {
|
||||
Self {
|
||||
uri: "http:///not-there.ogg".to_string(),
|
||||
uri: "http://not-there.ogg".to_string(),
|
||||
len: 10.mseconds(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue