gstreamer: Fix compilation after glib API change

This commit is contained in:
Sebastian Dröge 2020-09-08 16:11:39 +03:00
parent 6ce9a9ce12
commit 8aaec57dac

View file

@ -123,7 +123,7 @@ mod tests {
identity.set_property("silent", &false).unwrap(); identity.set_property("silent", &false).unwrap();
assert_eq!( assert_eq!(
*notify.lock().unwrap(), *notify.lock().unwrap(),
Some((identity.upcast::<::Object>(), String::from("silent"))) Some((identity.upcast::<::Object>(), "silent"))
); );
} }
} }