From 06dc5b3a5be33cdf935b09c5ed00bddfa597cbca Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Fri, 9 Feb 2024 09:26:57 +0100 Subject: [PATCH] fix --- .github/workflows/release.yml | 2 +- lib/edlang_parser/src/lib.rs | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e6ba1f53..65880105c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Main +name: Release on: push: diff --git a/lib/edlang_parser/src/lib.rs b/lib/edlang_parser/src/lib.rs index 39e78eb14..8257883a3 100644 --- a/lib/edlang_parser/src/lib.rs +++ b/lib/edlang_parser/src/lib.rs @@ -121,10 +121,4 @@ pub fn error_to_report<'a>( #[cfg(test)] mod test { - use crate::parse_ast; - - #[test] - fn test_ident() { - parse_ast("hello").unwrap(); - } }