mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
Fix YAML null value in fixture
The YAML null value is called `null` in YAML, not `Null`. yaml-rust handles those values according to spec, so we should use the correct capitalization. See https://yaml.org/spec/1.2/spec.html#id2803362 for more information.
This commit is contained in:
parent
2b101ad7e5
commit
15c441708b
1 changed files with 1 additions and 1 deletions
2
tests/fixtures/app.yaml
vendored
2
tests/fixtures/app.yaml
vendored
|
@ -21,7 +21,7 @@ args:
|
|||
about: tests positionals with exclusions
|
||||
index: 2
|
||||
default_value_if:
|
||||
- [flag, Null, some]
|
||||
- [flag, null, some]
|
||||
- [positional, other, something]
|
||||
- flag:
|
||||
short: f
|
||||
|
|
Loading…
Reference in a new issue