From a792e45c2bc85a9c129724ebcd33abd0bd943b20 Mon Sep 17 00:00:00 2001 From: GreasySlug <9619abgoni@gmail.com> Date: Sat, 28 Jun 2025 14:33:14 +0900 Subject: [PATCH] test: fix file name --- crates/erg_parser/tests/parse_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/erg_parser/tests/parse_test.rs b/crates/erg_parser/tests/parse_test.rs index a15be423..6f56729f 100644 --- a/crates/erg_parser/tests/parse_test.rs +++ b/crates/erg_parser/tests/parse_test.rs @@ -86,7 +86,7 @@ fn parse_invalid_class_definition() -> Result<(), ()> { #[test] fn parse_missing_paren() -> Result<(), ()> { - expect_failure("tests/missing_paren.er", 0, 1) + expect_failure("tests/unmatched_paren.er", 0, 1) } #[test]