File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/test-components/components Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ helper::define_component!(Component);
66
77impl Component {
88 fn main ( ) -> Result < ( ) , String > {
9- ensure_matches ! ( get( "variable" ) , Ok ( val) if val == "value " ) ;
9+ ensure_matches ! ( get( "variable" ) , Ok ( val) if val == "NOT ACTUALLY THE VALUE " ) ;
1010 ensure_matches ! ( get( "non_existent" ) , Err ( Error :: Undefined ( _) ) ) ;
1111
1212 ensure_matches ! ( get( "invalid-name" ) , Err ( Error :: InvalidName ( _) ) ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ helper::define_component!(Component);
66
77impl Component {
88 fn main ( ) -> Result < ( ) , String > {
9- ensure_matches ! ( get( "variable" ) , Ok ( Some ( val) ) if val == "value " ) ;
9+ ensure_matches ! ( get( "variable" ) , Ok ( Some ( val) ) if val == "NOT ACTUALLY THE VALUE " ) ;
1010 ensure_matches ! ( get( "non_existent" ) , Ok ( None ) ) ;
1111
1212 let expected_all = vec ! [
You can’t perform that action at this time.
0 commit comments