From dc918447b6e348d4b6d9535d00de3a67b08f66f8 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Sat, 13 Nov 2021 22:47:01 +0800 Subject: [PATCH] Fix tests. --- codegen/ui_tests/rhai_fn_non_clonable_return.stderr | 2 +- codegen/ui_tests/rhai_mod_non_clonable_return.stderr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codegen/ui_tests/rhai_fn_non_clonable_return.stderr b/codegen/ui_tests/rhai_fn_non_clonable_return.stderr index c8ee6dc5..ba165394 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` - --> $WORKSPACE/src/dynamic.rs + --> $WORKSPACE/src/types/dynamic.rs | | 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 c835c4b8..8cd59893 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` - --> $WORKSPACE/src/dynamic.rs + --> $WORKSPACE/src/types/dynamic.rs | | pub fn from(mut value: T) -> Self { | ^^^^^ required by this bound in `rhai::Dynamic::from`