mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-09-28 04:22:04 +00:00
gstreamer: Fix compilation after glib API change
This commit is contained in:
parent
6ce9a9ce12
commit
8aaec57dac
1 changed files with 1 additions and 1 deletions
|
@ -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"))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue