We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c9f96b commit f60b3a2Copy full SHA for f60b3a2
1 file changed
tests/xslt.rs
@@ -84,7 +84,7 @@ async fn test_xslt_rewrite_media() -> Result<()> {
84
.route("/mpd", get(
85
|| async { ([(header::CONTENT_TYPE, "application/dash+xml")], xml) }))
86
.route("/media/init.mp4", get(send_init))
87
- .route("/media/segment-:id.mp4", get(send_media))
+ .route("/media/{seg}", get(send_media))
88
.route("/status", get(send_status))
89
.with_state(shared_state);
90
let server_handle = hyper_serve::Handle::new();
0 commit comments