mirror of
https://github.com/fluencelabs/lalrpop
synced 2025-03-16 17:00:53 +00:00
rename test to avoid shadowing module name
The test name matching the module name caused an error on Rust 1.13 (but not on 1.16 and later). It can be avoided easily by renaming the test, which also avoids ambiguity.
This commit is contained in:
parent
85e6cf4b3a
commit
701808e23a
@ -417,7 +417,7 @@ fn generics_issue_104_test1() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn match_section() {
|
||||
fn test_match_section() {
|
||||
assert!(match_section::parse_Query("SELECT foo").is_ok());
|
||||
assert!(match_section::parse_Query("select foo").is_ok());
|
||||
assert!(match_section::parse_Query("INSERT foo").is_ok());
|
||||
|
Loading…
x
Reference in New Issue
Block a user