From c2f0ec28ba2138bca10935997d335238e1a03eba Mon Sep 17 00:00:00 2001 From: Jeff Date: Wed, 14 Feb 2024 18:57:24 -0500 Subject: [PATCH] Clean up --- tests/as.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/as.rs b/tests/as.rs index 1be8996..ec31c78 100644 --- a/tests/as.rs +++ b/tests/as.rs @@ -4,7 +4,7 @@ use dust_lang::{ }; #[test] -fn string_as_list() { +fn string_as_string_list() { assert_eq!( interpret("'foobar' as [str]"), Ok(Value::List(List::with_items(vec![ @@ -19,7 +19,7 @@ fn string_as_list() { } #[test] -fn string_as_list_conversion_error() { +fn string_as_list_error() { assert_eq!( interpret("'foobar' as [float]"), Err(Error::Validation(ValidationError::ConversionImpossible {