Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/text/wrap
diff options
context:
space:
mode:
authorBilal Elmoussaoui <bil.elmoussaoui@gmail.com>2021-11-08 12:55:40 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-11-08 15:43:53 +0300
commit82be7b3ac5911dd8b8cb13b3394f3159e57d6e3f (patch)
treee7e41d720aa7846d123734e7b8ad1ab42f2c82c0 /text/wrap
parentd9bda62a4720c0539a443a4e489645e9bb4af1eb (diff)
adapt to ObjectExt improvements
Diffstat (limited to 'text/wrap')
-rw-r--r--text/wrap/tests/textwrap.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/text/wrap/tests/textwrap.rs b/text/wrap/tests/textwrap.rs
index 73658d401..b399156c2 100644
--- a/text/wrap/tests/textwrap.rs
+++ b/text/wrap/tests/textwrap.rs
@@ -39,7 +39,7 @@ fn test_columns() {
{
let wrap = h.element().expect("Could not create textwrap");
- wrap.set_property("columns", 5u32).unwrap();
+ wrap.set_property("columns", 5u32);
}
h.set_src_caps_str("text/x-raw, format=utf8");
@@ -77,8 +77,8 @@ fn test_lines() {
{
let wrap = h.element().expect("Could not create textwrap");
- wrap.set_property("columns", 5u32).unwrap();
- wrap.set_property("lines", 2u32).unwrap();
+ wrap.set_property("columns", 5u32);
+ wrap.set_property("lines", 2u32);
}
h.set_src_caps_str("text/x-raw, format=utf8");