From 65326d87f4df8a8913d57bc1c43dbdb89bb04908 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Fri, 24 Sep 2021 18:42:57 +0800 Subject: [PATCH] Fix test output. --- codegen/ui_tests/rhai_fn_non_clonable_return.stderr | 4 ++-- codegen/ui_tests/rhai_mod_non_clonable_return.stderr | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/codegen/ui_tests/rhai_fn_non_clonable_return.stderr b/codegen/ui_tests/rhai_fn_non_clonable_return.stderr index 21e23630..70d877e8 100644 --- a/codegen/ui_tests/rhai_fn_non_clonable_return.stderr +++ b/codegen/ui_tests/rhai_fn_non_clonable_return.stderr @@ -8,7 +8,7 @@ error[E0277]: the trait bound `NonClonable: Clone` is not satisfied | the trait `Clone` is not implemented for `NonClonable` | note: required by a bound in `rhai::Dynamic::from` - --> $DIR/dynamic.rs:1121:30 + --> $DIR/dynamic.rs:1122:30 | -1121 | pub fn from(mut value: T) -> Self { +1122 | pub fn from(mut value: T) -> Self { | ^^^^^ required by this bound in `rhai::Dynamic::from` diff --git a/codegen/ui_tests/rhai_mod_non_clonable_return.stderr b/codegen/ui_tests/rhai_mod_non_clonable_return.stderr index 772a5112..82e9725b 100644 --- a/codegen/ui_tests/rhai_mod_non_clonable_return.stderr +++ b/codegen/ui_tests/rhai_mod_non_clonable_return.stderr @@ -8,7 +8,7 @@ error[E0277]: the trait bound `NonClonable: Clone` is not satisfied | the trait `Clone` is not implemented for `NonClonable` | note: required by a bound in `rhai::Dynamic::from` - --> $DIR/dynamic.rs:1121:30 + --> $DIR/dynamic.rs:1122:30 | -1121 | pub fn from(mut value: T) -> Self { +1122 | pub fn from(mut value: T) -> Self { | ^^^^^ required by this bound in `rhai::Dynamic::from`