Fix leftover test

This commit is contained in:
Jakub Žádník 2021-10-20 00:40:50 +03:00
parent a240aead8c
commit 402a4acd7a

View File

@ -571,7 +571,7 @@ fn hide_shadowed_decl() -> TestResult {
#[test]
fn hides_all_decls_within_scope() -> TestResult {
fail_test(
r#"module spam { export def foo [] { "bar" } }; def foo [] { "foo" }; use spam.foo; hide foo; foo"#,
r#"module spam { export def foo [] { "bar" } }; def foo [] { "foo" }; use spam::foo; hide foo; foo"#,
not_found_msg(),
)
}