remove the boolean vars (#4879)

This commit is contained in:
JT
2022-03-20 08:12:10 +13:00
committed by GitHub
parent f3bb1d11d3
commit bd5778fa24
3 changed files with 2 additions and 32 deletions

View File

@ -278,16 +278,6 @@ fn open_ended_range() -> TestResult {
run_test(r#"1.. | first 100000 | length"#, "100000")
}
#[test]
fn bool_variable() -> TestResult {
run_test(r#"$true"#, "true")
}
#[test]
fn bool_variable2() -> TestResult {
run_test(r#"$false"#, "false")
}
#[test]
fn default_value1() -> TestResult {
run_test(r#"def foo [x = 3] { $x }; foo"#, "3")